
body {
    /* اللون الكحلي الملكي المعتمد */
    background-color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

.login-container {
    width: 100%;
    /* عرض عريض ليتناسب مع طلبك السابق */
    max-width: 650px;
    padding: 2rem;
}

.login-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.login-header {
    /* الهيدر بنفس لون الخلفية الكحلي */
    background-color: var(--primary-color);
    padding: 2.5rem 2rem;
    text-align: center;
    color: white;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.login-logo-circle {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

    .login-logo-circle ion-icon {
        font-size: 2.5rem;
        color: white;
    }

.login-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.login-subtitle {
    opacity: 0.8;
    font-size: 0.95rem;
    margin-top: 8px;
}

.login-body {
    padding: 3rem;
}

.instruction-text {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: right;
}

.form-control {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    box-sizing: border-box;
    text-align: right;
    background-color: #f8fafc;
    margin-bottom: 1.5rem;
    font-family: 'Cairo', sans-serif;
}

    .form-control:focus {
        border-color: var(--primary-color);
        outline: none;
        background-color: #fff;
    }

/* زر الإرسال بنفس تصميم زر الدخول والإنشاء */
.btn-reset {
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    /* منع التحريك تماماً */
    transition: none !important;
}

    .btn-reset:hover {
        transform: none !important;
        box-shadow: none !important;
        background-color: var(--primary-color) !important;
    }

.login-links {
    text-align: center;
    margin-top: 2rem;
}

    .login-links a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
    }

        .login-links a:hover {
            text-decoration: underline;
        }

.copyright {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.85rem;
}


/* ///////////////////// */


.login-container {
    width: 100%;
    /* التعديل هنا: جعل العرض أصغر */
    max-width: 450px;
    padding: 1rem;
}

.login-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.login-header {
    background-color: var(--primary-color);
    padding: 1.5rem; /* تقليل بسيط هنا أيضاً */
    text-align: right;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

/* ... بقية الكود ... */

.login-body {
    /* التعديل هنا: تقليل الحواشي الداخلية */
    padding: 2rem;
}

body {
    /* استخدام اللون الأزرق الداكن المطابق للصورة */
    background-color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cairo', sans-serif;
    margin: 0;
}

.login-container {
    width: 100%;
    /* تكبير العرض ليكون التصميم عرضياً */
    max-width: 700px;
    padding: 2rem;
}

صالحة, [19/01/26 01:28 م]
.login-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.login-header {
    /* اللون الكحلي الملكي من الصورة */
    background-color: var(--primary-color);
    padding: 2rem;
    text-align: right; /* محاذاة لليمين كما في الصورة */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.login-logo-circle {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
}

.login-subtitle {
    opacity: 0.9;
    font-size: 0.9rem;
    margin-top: 5px;
}

.login-body {
    padding: 3rem; /* زيادة المسافة الداخلية لتعزيز العرض */
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: right;
}

.form-control {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 0.8rem 1rem;
    box-sizing: border-box;
    text-align: right;
    background-color: #f8fafc;
    margin-bottom: 1.5rem;
}

.btn-login {
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    width: 100%;
    cursor: pointer;
    /* تم إزالة الأنيميشن والحركة تماماً */
    transition: none;
}

    /* إلغاء تأثير الـ Hover */
    .btn-login:hover {
        transform: none;
        box-shadow: none;
    }

.login-links {
    text-align: center;
    margin-top: 1.5rem;
}

    .login-links a {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 0.9rem;
    }
/* إلغاء أي تأثير عند مرور الماوس للزرين */
.btn-login:hover, .btn-register:hover {
    transform: none !important;
    box-shadow: none !important;
    background-color: var(--primary-color) !important;
    filter: none !important;
}

/* تنسيق الأيقونات داخل الأزرار */
.btn-register ion-icon, .btn-login ion-icon {
    font-size: 1.4rem;
}

.btn-login, .btn-register {
    background-color: var(--primary-color); /* اللون الكحلي المطابق للصورة */
    border: none;
    border-radius: 8px;
    padding: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
    width: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem; /* مسافة بين الأيقونة والنص */
    /* إزالة الأنيميشن تماماً */
    transition: none !important;
}


/* /////////////////////// */



.login-container {
    width: 100%;
    /* التعديل هنا: جعل العرض أصغر */
    max-width: 550px;
    padding: 1rem;
}

.login-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.login-header {
    background-color: var(--primary-color);
    padding: 1.5rem; /* تقليل بسيط هنا أيضاً */
    text-align: right;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row-reverse;
}

/* ... بقية الكود ... */

.login-body {
    /* التعديل هنا: تقليل الحواشي الداخلية */
    padding: 2rem;
}
