/* :root {
    --primary-color: #ff6b8b;
    --secondary-color: #ffb8c6;
    --light-color: #fff5f7;
    --dark-color: #3a3a3a;
    --font-primary: 'Tajawal', sans-serif;
}

body {
    font-family: var(--font-primary);
    direction: rtl;
    color: var(--dark-color);
    background-color: #f9f9f9;
    line-height: 1.6;
}

.auth-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.auth-card {
    flex: 1;
    padding: 3rem;
}

.auth-illustration {
    flex: 1;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-illustration img {
    max-width: 100%;
    height: auto;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header h1 {
    font-weight: 700;
    color: #343a40;
}

.auth-header p {
    color: #6c757d;
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.auth-form label i {
    margin-left: 8px;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    color: #6c757d;
}

@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-illustration {
        display: none;
    }
} */


/* --------------------------------------------------- */
/* تحسينات التصميم */
.auth-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    width: 100%;
    padding: 2rem;
}

.auth-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    width: 100%;
    max-width: 450px;
}

.auth-header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-header .auth-logo {
    max-height: 60px;
    margin-bottom: 1rem;
}

.auth-form .form-control {
    padding: 12px 15px;
    border-radius: 8px;
}

.toggle-password {
    border-radius: 0 8px 8px 0 !important;
}

@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }
    
    .auth-illustration {
        display: none;
    }
}