﻿/* أنماط النافذة المنبثقة لتسجيل الدخول */

.login-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    overflow: auto;
    direction: rtl;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.login-modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.login-modal-content {
    background-color: #fff;
    margin: auto;
    width: 659px;
    height: 732px;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    padding: 40px;
    direction: rtl;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.login-modal.show .login-modal-content {
    transform: translateX(0);
    opacity: 1;
    animation: moveInRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.login-modal-header {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.close-modal {
    font-size: var(--font-2xl);
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    margin-right: auto;
}

.close-modal:hover {
    color: #000;
}

.login-title {
    color: #00937B;
    text-align: center;
    font-size: var(--font-2xl);
    margin-bottom: 35px;
    font-weight: 600;
    width: 100%;
    margin-bottom: 35px !important;

}

/* قسم تسجيل الدخول برقم الهاتف */
.phone-input-row {
    display: flex;
    gap: 6px;
    margin-bottom: 20px;
    flex-direction: row-reverse;
    justify-content: center;
    width: 100%;
    margin-bottom: 30px !important;
}

.phone-field {
    flex: none;
    width: 419.25px;
    height: 51.42px;
}

.phone-field .login-input {
    width: 419.25px;
    height: 51.42px;
    margin-bottom: 0;
}

/* أنماط محدد الدولة */
.country-select {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    background: white;
}

.country-select .flag-img {
    width: 20px;
    height: 15px;
    object-fit: cover;
}

.country-select .code {
    font-size: 14px;
    color: #333;
}

/* Country Selector Styles */
.country-code-select {
    position: relative;
    cursor: pointer;
    user-select: none;
    width: 100%;
}

.country-code-select .selected-country {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 8px;
}

.country-code-select .dropdown-arrow {
    margin-right: 10px;
    font-size: 0.7em;
    transition: transform 0.3s ease;
}

.country-code-select.active .dropdown-arrow {
    transform: rotate(180deg);
}

.country-code-select .country-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 5px;
}

.country-code-select.active .country-dropdown {
    display: block;
}

.country-dropdown .country-item {
    display: flex;
    align-items: center;
    padding: 10px;
    transition: background-color 0.3s ease;
    cursor: pointer;
}

.country-dropdown .country-item:hover {
    background-color: #f0f0f0;
}

.country-dropdown .country-item img {
    width: 24px;
    height: 18px;
    margin-left: 10px;
    object-fit: cover;
}

.country-dropdown .country-item span {
    margin-left: 10px;
}

.country-dropdown .country-item .country-code {
    margin-right: auto;
    color: #888;
}

.login-modal .login-input-oth{
    width: 514px !important;
    height: 50px !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    border-width: 1.03px !important;
    border: 1.03px solid #1212124F !important;
    box-sizing: border-box !important;
    font-family: 'Droid Arabic Kufi', sans-serif !important;
    font-size: 17.65px !important;
    font-weight: 400 !important;
    line-height: 160% !important;
    color: #121212 !important;
    background: #fff !important;
    outline: none !important;
    margin-bottom: 15px !important;
    display: block !important;
 }
.login-modal .login-input {
    width: 514px !important;
    height: 50px !important;
    border-radius: 8px !important;
    padding: 14px 16px !important;
    border-width: 1.03px !important;
    border: 1.03px solid #1212124F !important;
    box-sizing: border-box !important;
    font-family: 'Droid Arabic Kufi', sans-serif !important;
    font-size: 17.65px !important;
    font-weight: 400 !important;
    line-height: 160% !important;
    color: #121212 !important;
    background: #fff !important;
    outline: none !important;
    margin-bottom: 15px !important;
    display: block !important;
    text-align: right !important;
}

/* تكبير حقول الإدخال للـ PC فقط */
@media (min-width: 1024px) {
    .login-modal .credentials-login-section .login-input {
        width: 514px !important;
        height: 50px !important;
        border-radius: 8px !important;
        padding: 14px 16px !important;
        border-width: 1.03px !important;
        gap: 10px !important;
    }
}

.login-modal .send-code-btn {
    width: 514px !important;
    height: 50px !important;
    border-radius: 8px !important;
    padding: 10px 40px !important;
    margin-bottom: 15px !important;

    background: #158885 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-family: 'Droid Arabic Kufi', sans-serif !important;
    font-weight: 400 !important;
    font-size: 17.65px !important;
    line-height: 160% !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: #F5FAFC !important;
    border: none !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    text-decoration: none !important;
}

.error-msg {
    width: 514px;
    margin-left: auto;
    margin-right: auto;
    color: #FF4D4F;
    font-size: var(--font-lg);
    font-weight: bold;
    font-family: "Droid Arabic Kufi", sans-serif;
    text-align: center;
    margin-bottom: 32px !important;
}

/* فاصل */
.separator {
    text-align: center;
    margin: 25px 0 30px 0;
    color: #00937B;
    font-size: var(--font-lg);
    font-weight: bold;
    font-family: "Droid Arabic Kufi", sans-serif;
    width: 100%;
}

.separator span {
    display: inline-block;
    font-family: 'Droid Arabic Kufi', sans-serif !important;
        font-weight: 700 !important;
        font-size: 12px !important;
        line-height: 150% !important;
        letter-spacing: 0 !important;
        text-align: center !important;
        color: #158885 !important;
        white-space: nowrap !important;
        display: block !important;
        /* margin: 0 0 8px 0 !important; */
        padding: 0 !important;;
}

/* قسم تسجيل الدخول باسم المستخدم وكلمة المرور */
.password-field {
    position: relative;
    width: 514px;
    margin-bottom: 56px;
}

.password-field .login-input {
    margin-bottom: 0;
}

.toggle-password {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.eye-icon {
    width: 24px;
    height: 24px;
}

.login-submit-btn {
    width: 514px !important;
    height: 47.21px !important;
    border-radius: 8px !important;
    padding: 16.18px 40.45px !important;
    background: #158885 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10.3px !important;
    font-family: 'Almarai', sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 160% !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: #F5FAFC !important;
    border: none !important;
    box-sizing: border-box !important;
    cursor: pointer !important;
    text-decoration: none !important;
    margin-bottom: 18px !important;
}

.login-modal .forgot-password {
    font-family: 'Droid Arabic Kufi', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    line-height: 150% !important;
    letter-spacing: 0 !important;
    text-align: right !important;
    color: #2D3748 !important;
    text-decoration: underline !important;
    text-decoration-style: solid !important;
    text-decoration-thickness: 1px !important;
    text-decoration-color: #2D3748 !important;
    text-decoration-skip-ink: none !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin-bottom: 18px !important;
    display: block !important;
}

/* قسم المساعدة */
.help-section {
    display: flex;
    justify-content: center;
    gap: 15px;
    width: 100%;
    margin-top: 0;
}

.help-btn.customer-service {
    width: 251.12px;
    height: 65.36px;
}

.help-btn.self-help {
    width: 251.12px;
    height: 65px;
}

.help-btn {
    width: 251.12px !important;
    height: 65px !important;
    border-radius: 12px !important;
    padding: 16px 36px !important;
    background: #2D3748 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    font-family: 'Droid Arabic Kufi', sans-serif !important;
    font-weight: 400 !important;
    font-size: 20.59px !important;
    line-height: 160% !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: #fff !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    overflow: visible !important;
}

.login-modal .help-btn span {
    font-family: 'Droid Arabic Kufi', sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 160% !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    color: #fff !important;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap !important;
    overflow: visible !important;
    text-overflow: unset !important;
    display: inline-block !important;
    flex-shrink: 0 !important;
}

.login-modal .help-btn .help-icon {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* أنماط نافذة استرداد كلمة المرور */
.forgot-password-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    align-items: center;
    justify-content: center;
}

.forgot-password-modal-content {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    position: relative;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.forgot-password-title {
    color: #00a19a;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: 'Droid Arabic Kufi', sans-serif;
}

.forgot-password-input {
    width: 100%;
    height: 45px;
    border-radius: 10px;
    border: 1px solid #e0e0e0;
    padding: 0 15px;
    margin-bottom: 20px;
    text-align: right;
    font-family: 'Droid Arabic Kufi', sans-serif;
    font-size: 14px;
    box-sizing: border-box;
    background-color: #f8f9fa;
}

.forgot-password-submit-btn {
    width: 100%;
    height: 45px;
    background-color: #00a19a;
    color: white;
    border: none;
    border-radius: 10px;
    font-family: 'Droid Arabic Kufi', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.forgot-password-submit-btn:hover {
    background-color: #008c85;
}

.close-forgot-modal {
    position: absolute;
    left: 15px;
    top: 10px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #aaa;
    line-height: 1;
}

.close-forgot-modal:hover {
    color: #666;
}

/* تعديل المسافة قبل حقل اسم المستخدم */
.credentials-login-section {
    margin-top: 30px;
}

.star-icon {
    width: 8.09px;
    height: 7.36px;
    object-fit: contain;
}

/* تأثيرات الحركة للنافذة المنبثقة */
@keyframes moveInRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }
    
    60% {
        transform: translateX(-8%);
        opacity: 0.8;
    }
    
    80% {
        transform: translateX(4%);
        opacity: 0.9;
    }
    
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* تأثير فتح النافذة بـ Spring curve */
.login-modal.show {
    animation: overlayFadeIn 0.3s ease-out forwards;
}

@keyframes overlayFadeIn {
    0% {
        opacity: 0;
        backdrop-filter: blur(0px);
    }
    100% {
        opacity: 1;
        backdrop-filter: blur(2px);
    }
}

/* تحسين التأثير للموبايل */
@media (max-width: 480px), (max-width: 760px) {
    .login-modal .country-code-select {
        width: 65px !important;
        height: 42px !important;
        border-radius: 6px !important;
        padding: 4px !important;
        border: 0.8px solid #1212124F !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
        box-sizing: border-box !important;
        background: #fff !important;
    }
    
    .login-modal .country-flag {
        display: flex !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .login-modal .country-flag .flag-img {
        width: 16px !important;
        height: 11px !important;
        object-fit: contain !important;
        display: block !important;
    }
    
    .login-modal .country-code-select .code {
        font-family: 'Droid Arabic Kufi', sans-serif !important;
        font-size: 10px !important;
        font-weight: 500 !important;
        color: #666 !important;
        margin: 0 !important;
        padding: 0 !important;
        white-space: nowrap !important;
    }

    .login-modal-content {
        width: 400px !important;
        height: 680px !important;
        max-width: 95vw !important;
        max-height: 95vh !important;
        border-radius: 14px !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding: 20px 12px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 15px !important;
        margin-top: -24px !important;
    }
    .login-modal-content * {
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }
    .login-modal .phone-input-row {
        width: 295px !important;
        margin: 0 auto !important;
        gap: 8px !important;
        display: flex !important;
        flex-direction: row-reverse !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 20px !important;
    }
    .login-modal .phone-field {
        width: 100% !important;
        max-width: 220px !important;
        min-width: 0 !important;
        height: 42px !important;
        border-radius: 6px !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        background: none !important;
        border: none !important;
        overflow: hidden !important;
    }
    .login-modal .phone-field .login-input {
        width: 100% !important;
        height: 42px !important;
        border-radius: 6px !important;
        padding: 12px !important;
        border: 0.8px solid #1212124F !important;
        font-size: 16px !important;
        color: #222 !important;
        background: #fff !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        text-align: right !important;
        overflow: hidden !important;
    }
    .login-modal .send-code-btn {
        width: 295px !important;
        height: 38px !important;
        border-radius: 6px !important;
        padding: 8px 86px !important;
        background: #158885 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        font-family: 'Droid Arabic Kufi', sans-serif !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 160% !important;
        letter-spacing: 0 !important;
        text-align: center !important;
        color: #F5FAFC !important;
        border: none !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
        margin: 0 auto 0 auto !important;
        margin-bottom: 16px !important;
    }
    .login-modal .login-or-msg,
    .login-modal .or-login-msg {
        font-family: 'Droid Arabic Kufi', sans-serif !important;
        font-weight: 700 !important;
        font-size: 10px !important;
        line-height: 150% !important;
        letter-spacing: 0 !important;
        text-align: right !important;
        color: #158885 !important;
        white-space: nowrap !important;
        display: block !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
    }
    .login-modal .login-input-oth,
    .login-modal .credentials-login-section .login-input {
        width: 514px !important;
        height: 50px !important;
        border-radius: 8px !important;
        padding: 14px 16px !important;
        border-width: 1.03px !important;
        border: 1.03px solid #1212124F !important;
        box-sizing: border-box !important;
        gap: 10px !important;
        font-size: 16px !important;
        margin-bottom: 10px !important;
        background: #fff !important;
        color: #222 !important;
        text-align: right !important;
        display: block !important;
        justify-content: center !important;
        align-items: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    .login-modal .password-field {
        position: relative !important;
    }
    .login-modal .eye-icon {
        width: 16px !important;
        height: 16px !important;
        position: absolute !important;
        left: 6px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        cursor: pointer !important;
        opacity: 1 !important;
        z-index: 3 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: none !important;
        border: none !important;
        display: block !important;
        pointer-events: auto !important;
        visibility: visible !important;
    }
    .login-modal .password-field .login-input {
        padding-left: 32px !important;
        width: 514px !important;
        height: 50px !important;
        border-radius: 8px !important;
        padding: 14px 32px 14px 16px !important;
        border-width: 1.03px !important;
        border: 1.03px solid #1212124F !important;
    }
    .login-modal .login-submit-btn,
    .login-modal .credentials-login-section .login-submit-btn {
        width: 514px !important;
        height: 47.21px !important;
        border-radius: 8px !important;
        padding: 16.18px 40.45px !important;
        gap: 10.3px !important;
        background: #158885 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        font-family: 'Droid Arabic Kufi', sans-serif !important;
        font-weight: 400 !important;
        font-size: 14px !important;
        line-height: 160% !important;
        letter-spacing: 0 !important;
        text-align: center !important;
        color: #F5FAFC !important;
        border: none !important;
        box-sizing: border-box !important;
        cursor: pointer !important;
        margin: 0 auto 0 auto !important;
        margin-bottom: 15px !important;
    }
    .login-modal .help-btn.customer-service {
        width: 251.12px !important;
        height: 65.36px !important;
        border-radius: 12px !important;
        padding: 16.18px 36.78px !important;
        background: #2D3748 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        box-sizing: border-box !important;
        font-family: 'Droid Arabic Kufi', sans-serif !important;
        font-size: 14px !important;
        color: #fff !important;
        border: none !important;
        outline: none !important;
        cursor: pointer !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }
    .login-modal .help-btn.self-help {
        width: 251.12px !important;
        height: 65.36px !important;
        border-radius: 12px !important;
        padding: 16.18px 36.78px !important;
        background: #2D3748 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 8px !important;
        box-sizing: border-box !important;
        font-family: 'Droid Arabic Kufi', sans-serif !important;
        font-size: 14px !important;
        color: #fff !important;
        border: none !important;
        outline: none !important;
        cursor: pointer !important;
        white-space: nowrap !important;
        overflow: visible !important;
    }
    .login-modal .help-btn.customer-service span,
    .login-modal .help-btn.self-help span {
        white-space: nowrap !important;
        overflow: visible !important;
        text-overflow: unset !important;
        display: inline-block !important;
        flex-shrink: 0 !important;
        font-size: 14px !important;
        line-height: 1 !important;
    }
    .login-modal .forgot-password {
        font-family: 'Droid Arabic Kufi', sans-serif !important;
        font-weight: 700 !important;
        font-size: 8.59px !important;
        line-height: 150% !important;
        letter-spacing: 0 !important;
        text-align: right !important;
        color: #2D3748 !important;
        text-decoration: underline !important;
        text-decoration-style: solid !important;
        text-decoration-thickness: 1px !important;
        text-decoration-color: #2D3748 !important;
        text-decoration-skip-ink: none !important;
        cursor: pointer !important;
        background: none !important;
        border: none !important;
        outline: none !important;
        padding: 0 !important;
        margin-bottom: 10px !important;
        display: block !important;
    }
    .login-modal .help-btn.self-help {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    /* أنماط نافذة استرداد كلمة المرور للموبايل */
    .forgot-password-modal-content {
        width: 95vw !important;
        max-width: 400px !important;
        height: auto !important;
        min-height: 350px !important;
        border-radius: 20px !important;
        padding: 30px 20px !important;
        gap: 25px !important;
        margin: 20px !important;
    }

    .forgot-password-title {
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin-bottom: 0 !important;
    }

    .forgot-password-input {
        width: 100% !important;
        max-width: none !important;
        height: 60px !important;
        border-radius: 12px !important;
        padding: 0 20px !important;
        font-size: 16px !important;
        margin-bottom: 0 !important;
    }

    .forgot-password-submit-btn {
        width: 100% !important;
        max-width: none !important;
        height: 60px !important;
        border-radius: 12px !important;
        font-size: 18px !important;
        margin-top: 0 !important;
    }
}

/* حذف جميع قواعد profile-edit من هذا الملف لتجنب التعارض */
/* يتم التحكم في نافذة تعديل البيانات من ملف profile-edit.css فقط */

/* Animation */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.login-modal input.login-input {
  width: 419.25px !important;
  height: 51.42px !important;
  border-radius: 8px !important;
  padding-top: 14.71px !important;
  padding-right: 16.18px !important;
  padding-bottom: 14.71px !important;
  padding-left: 16.18px !important;
  border-width: 1.03px !important;
  border: 1.03px solid #1212124F !important;
  box-sizing: border-box !important;
  font-family: 'Droid Arabic Kufi', sans-serif !important;
  font-size: 18px !important;
  margin-bottom: 10.3px !important;
  display: block !important;
}

.login-modal .country-code-select {
  width: 70px !important;
  height: 50px ;
  border-radius: 8.83px !important;
  padding-top: 14.71px !important;
  padding-right: 16.18px !important;
  padding-bottom: 14.71px !important;
  padding-left: 16.18px !important;
  border-width: 1.03px !important;
  border: 1.03px solid #1212124F !important;
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  gap: 3.68px !important;
  background: #fff !important;
}

.login-modal .help-btn.customer-service {
  width: 251.12px ;
  height: 65.36px ;
  border-radius: 12px ;
  padding: 16.18px 36.78px ;
  background: #2D3748 !important;
  display: flex ;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  font-family: 'Droid Arabic Kufi', sans-serif !important;
  font-weight: 400 ;
  font-size: 20.59px ;
  line-height: 160% ;
  letter-spacing: 0 !important;
  text-align: center !important;
  color: #fff !important;
  text-decoration: none !important;
  border: none !important;
  outline: none !important;
  cursor: pointer !important;
  gap: 0 !important;
}

.login-modal .help-btn.customer-service span {
  margin: 0 !important;
  padding: 0 !important;
  font-family: Droid Arabic Kufi;
font-weight: 400;
font-size: 12px !important;
line-height: 160%;
letter-spacing: 0%;
text-align: center;

}

.login-modal .help-btn.customer-service .help-icon {
  margin: 0 !important;
  padding: 0 !important;
}

/* تنسيقات خاصة بالموبايل */
@media (max-width: 768px) {
    .forgot-password-modal-content {
        width: 182px;
        height: 282px;
        border-radius: 12px;
        padding: 24px;
        gap: 16px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .forgot-password-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .forgot-password-input {
        height: 34px;
        border-radius: 6px;
        padding: 8px;
        margin-bottom: 16px;
        font-size: 12px;
    }

    .forgot-password-submit-btn {
        width: 134px;
        height: 34px;
        border-radius: 6px;
        padding: 8px 19.77px;
        font-size: 14px;
        gap: 6px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .close-forgot-modal {
        font-size: 20px;
        top: 8px;
        left: 8px;
    }
}

/* Country Dropdown Styles */
.country-dropdown {
    display: block !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    background: white !important;
    border: 1px solid #ddd !important;
    z-index: 9999 !important;
    max-height: 200px !important;
    overflow-y: auto !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.country-dropdown-item {
    display: flex !important;
    align-items: center !important;
    padding: 10px !important;
    cursor: pointer !important;
    transition: background-color 0.2s !important;
}

.country-dropdown-item:hover {
    background-color: #f0f0f0 !important;
}

.country-code-select {
    position: relative !important;
}

