/* Registration-specific styles layered on login.css */

.login-form input[type="email"] {
    width: 100%;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid #d1d5db;
    font-size: 14px;
    outline: none;
    background-color: #f9fafb;
    transition: border-color 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.login-form input[type="email"]:focus {
    border-color: #0891b2;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.18);
}

.popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.popup-box {
    width: 90%;
    max-width: 380px;
    background: #ffffffee;
    backdrop-filter: blur(16px);
    border-radius: 16px;
    padding: 20px 24px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.35);
    text-align: center;
    direction: rtl;
}

.popup-box h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 600;
    color: #111827;
}

.popup-box p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 4px;
}

.popup-box p a {
    color: #0e7490;
    font-weight: 500;
    text-decoration: none;
}

.popup-box p a:hover {
    text-decoration: underline;
}

.popup-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: #b91c1c;
}

.popup-close {
    margin-top: 14px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #14b8a6, #0891b2);
    color: #ffffff;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 500;
    box-shadow: 0 6px 16px rgba(8, 145, 178, 0.35);
}

.popup-close:hover {
    filter: brightness(1.05);
}
