/* أساسيات الصفحة */
body.login-page {
    font-family: 'Tajawal', sans-serif;
    background-color: #f8f9fa;
    background-image: url('../images/login-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #333;
    line-height: 1.6;
}

/* حاوية تسجيل الدخول */
.login-container {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 450px;
    padding: 30px;
    margin: 20px;
    transition: all 0.3s ease;
}

/* رأس تسجيل الدخول */
.login-header {
    text-align: center;
    margin-bottom: 30px;
}

.login-logo {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.login-header h1 {
    color: #1a5276;
    margin: 0 0 10px;
    font-weight: 700;
}

.login-header p {
    color: #666;
    margin: 0;
}

/* نموذج تسجيل الدخول */
.login-form {
    margin-top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #444;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: all 0.3s;
    font-family: 'Tajawal', sans-serif;
}

.form-control:focus {
    border-color: #1a5276;
    box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
    outline: none;
}

.is-invalid {
    border-color: #e74c3c;
}

.is-invalid:focus {
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.invalid-feedback {
    color: #e74c3c;
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

/* زر تسجيل الدخول */
.btn {
    display: inline-block;
    padding: 12px 20px;
    background-color: #1a5276;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s;
    font-family: 'Tajawal', sans-serif;
}

.btn:hover {
    background-color: #154360;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-primary {
    background-color: #1a5276;
}

.btn-primary:hover {
    background-color: #154360;
}

/* تذييل الصفحة */
.login-footer {
    margin-top: 30px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.login-footer a {
    color: #1a5276;
    text-decoration: none;
}

.login-footer a:hover {
    text-decoration: underline;
}

.copyright {
    margin-top: 15px;
    font-size: 13px;
    color: #999;
}

/* إضافات خاصة بتسجيل الدخول */
.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 15px 0;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    margin-left: 8px;
}

.forgot-password {
    color: #1a5276;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

/* التنبيهات */
.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 15px;
}

.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}