body {
    font-family: 'Tajawal', sans-serif;
    background: #f4f7fb;
}
.hero-slide {
    background-size: cover;
    background-position: center;
}
.login-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-modal-backdrop {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
}
.login-modal-box {
    position: relative;
    background-color: white;
    border-radius: 14px;
    padding: 2rem;
    max-width: 420px;
    width: 90%;
}
.login-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 1rem;
}
.login-modal-header h2 {
    margin: 0;
    color: #2c3e50;
    font-size: 1.4rem;
    font-weight: 700;
}
.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 32px;
    height: 32px;
    line-height: 1;
}
.close-btn:hover { color: #2c3e50; }
.login-form { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}
.form-control {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    direction: rtl;
}
.form-control:focus {
    outline: none;
    border-color: #f1c40f;
    box-shadow: 0 0 0 3px rgba(241, 196, 15, 0.15);
}
.btn-login-submit {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background-color: #f1c40f;
    color: #2c3e50;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Tajawal', sans-serif;
    cursor: pointer;
    transition: all 0.2s ease;
}
.btn-login-submit:hover {
    background-color: #e2b90e;
    transform: translateY(-1px);
}
.login-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #dee2e6;
}
.login-footer p { margin: 0; color: #6c757d; font-size: 0.9rem; }
.login-footer a { color: #f1c40f; text-decoration: none; font-weight: 700; }
.login-footer a:hover { text-decoration: underline; }
.alert { padding: 0.9rem; border-radius: 8px; margin-bottom: 1rem; }
.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    font-size: 0.9rem;
}
