/* ==========================================================================
   منصة آية — تنسيقات صفحات المصادقة (Login / Register)
   ========================================================================== */

/* الخلفية الكاملة لصفحة تسجيل الدخول */
.aya-auth-body {
    min-height: 100vh;
    background: linear-gradient(150deg, #0f2347 0%, #1a3a6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 16px;
}

/* غلاف المحتوى المركزي */
.aya-auth-wrapper {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

/* بطاقة تسجيل الدخول — فوق خلفية البطاقة الافتراضية */
.aya-auth-card {
    padding: 40px 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

/* أيقونة الشعار */
.aya-auth-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--aya-primary) 0%, var(--aya-primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 2rem;
    color: var(--aya-accent);
    box-shadow: 0 4px 16px rgba(45, 90, 39, 0.4);
}

/* عنوان الصفحة */
.aya-auth-title {
    color: var(--aya-primary);
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 4px;
}

/* وصف الصفحة */
.aya-auth-subtitle {
    color: #888;
    font-size: 0.88rem;
    margin-bottom: 0;
}

/* حقول الإدخال */
.aya-auth-card .form-control {
    border-radius: 8px;
    border: 1.5px solid var(--aya-border-color);
    padding: 10px 14px;
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    transition: all 0.2s ease;
    background-color: var(--aya-secondary);
}

.aya-auth-card .form-control:focus {
    border-color: var(--aya-primary);
    box-shadow: 0 0 0 3px rgba(45, 90, 39, 0.12);
    background-color: #fff;
}

/* تسميات الحقول */
.aya-auth-card .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 6px;
}

/* زر تسجيل الدخول */
.aya-auth-submit {
    width: 100%;
    padding: 11px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    margin-top: 8px;
}

/* الفاصل السفلي */
.aya-auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}
