* {
    font-family: 'Cairo', sans-serif;
}

body {
    background-image: url("../img/bg.280776ac8893.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 440px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.login-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.login-logo-img {
    max-width: 140px;
    max-height: 110px;
    object-fit: contain;
}

.login-title {
    font-size: 1.4rem;
    font-weight: 900;
    color: #1a3c5e;
    text-align: center;
}

.login-subtitle {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-bottom: 2rem;
}

.form-label {
    font-weight: 700;
    font-size: 0.88rem;
    color: #555;
}

.form-control {
    border-radius: 8px;
    border: 1.5px solid #e0e6ed;
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
}

.form-control:focus {
    border-color: #1a3c5e;
    box-shadow: 0 0 0 3px rgba(26, 60, 94, 0.1);
}

.btn-login {
    background: linear-gradient(135deg, #1a3c5e, #2a5a8a);
    color: white;
    border: none;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    width: 100%;
    transition: opacity 0.2s;
}

.btn-login:hover {
    opacity: 0.9;
    color: white;
}

.footer-text {
    font-size: 0.75rem;
    color: #aaa;
    text-align: center;
    margin-top: 1.5rem;
}

.input-group-text {
    border-radius: 8px 0 0 8px;
    border: 1.5px solid #e0e6ed;
    background: #f8f9fa;
}

.login-error-alert {
    font-size: 0.85rem;
}
.login-warning-alert {
    font-size: 0.88rem;
}
