
/* ===== PAGE LOGIN ===== */
body.login-body {
background-image: url('../images/f2.jpeg');
    background-size: cover;
    
    /* background: linear-gradient(135deg, #f7e295 0%, #f7e295 100%); */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 600px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    /* background-image: url('../images/f3.jpeg'); */
    background-size: cover;
    /* width: 600px; */
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(253, 136, 3, 0.848);
    border: 3px solid rgba(218, 118, 4, 0.951);
}

.login-logo {
    text-align: center;
    padding: 8px;
    background: linear-gradient(135deg, #f0d08c 0%, #ff950a 100%);
    border-radius: 16px;
    margin-bottom: 1.6rem;
    border: 1.6px solid blue;
    color: white;
}

.login-logo h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 3rem;
}

.login-logo small {
    opacity: 0.9;
    font-size: 1.3rem;
    color: blue;
    font-family: 'Courier New', Courier, monospace;
    font-weight: bolder;
    font-style: oblique;
    word-spacing: 3rem;
}








/* Style général */
.alert {
    position: absolute;
    text-wrap: wrap;
    top: 20px;
    border-radius: 10px;
    padding: 14px 18px;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    /* font-style: oblique; */
    /* font-weight: 500; */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.232);
    animation: slideIn 0.8s ease;
}


/* Succès */
.alert-success {
    position: absolute;
    background: #e9f8f1;
    color: #0f5132;
    border-left: 6px solid #0f5132;
}

/* Erreur */
.alert-danger {
    /* position: absolute; */
    background: #f6c8c3;
    color: #842029;
    border-left: 6px solid #842029;
    /* opacity: 0.9; */
}

/* Info */
.alert-info {
    background: #e7f3ff;
    color: #084298;
    border-left: 6px solid #084298;
}

/* Warning */
.alert-warning {
    background: #cdfbff;
    color: #664d03;
    border-left: 6px solid #664d03;
}

/* Animation */
@keyframes slideIn {
    from {
        transform: translateY(-10px);
        opacity: 0.5;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}










.login-title {
    color: white;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 1.5rem;
    border-radius: 12px;
    padding: 10px;
    background: linear-gradient(135deg, #0530ef 0%, #785607 100%);
    /* -webkit-background-clip: text; */
    /* -webkit-text-fill-color: transparent; */
}




.login-form .form-control {
    border: 2px solid #e1e5e9;
    border-radius: 10px;
    padding: 0.875rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgb(255, 255, 255);
}

.login-form .form-control:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.267);
    background: white;
}

.password-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    user-select: none;
    color: var(--gray);
    transition: color 0.3s ease;
}

.password-toggle:hover {
    color: var(--primary);
}

.login-btn {
    background: linear-gradient(135deg, #0531f5 0%, #0948f5 100%);
    border: none;
    padding: 0.875rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    color: white;
    margin-top: 1.5rem;
    width: 100%;
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}
