
/*# sourceMappingURL=app.min.css.map */

/* === RESET GLOBAL === */
html, body {
    height: 100%;
    margin: 0;
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #f6f7fb !important;
}

/* === STRUCTURE === */
.auth-wrapper {
    display: flex;
    flex-direction: column;
    height: 100vh;
}

/* === BANDEAU SUPÉRIEUR === */
.auth-header {
    background-color: #232754;
    color: #fff;
    text-align: center;
    padding: 100px 0 80px;
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.auth-header h1 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.auth-header p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* === CONTENU CENTRAL === */
.auth-content {
    flex-grow: 1;
    display: flex;
    align-items: center; /* ✅ centrage vertical parfait */
    justify-content: center;
    padding: 40px 15px;
    background-color: #f6f7fb;
}

/* === CARTE (Formulaire) === */
.auth-card {
    background-color: #fff;
    border: none;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 420px;
    margin-top: -120px; /* ✅ chevauchement équilibré */
}

.auth-card .card-body {
    padding: 2rem;
}

.auth-card .card-footer {
    background-color: transparent;
    border-top: none;
    color: #888;
    font-size: 0.85rem;
    text-align: center;
}

/* === BOUTONS === */
.btn-primary {
    background-color: #232754 !important;
    border-color: #232754 !important;
}

.btn-primary:hover {
    background-color: #1b1e46 !important;
    border-color: #1b1e46 !important;
}

/* === INPUTS === */
.form-control {
    border-radius: 5px;
    box-shadow: none !important;
}

.form-control:focus {
    border-color: #232754;
    box-shadow: 0 0 0 0.15rem rgba(35, 39, 84, 0.25);
}

/* === LIENS & TEXTES === */
.text-muted {
    color: #777 !important;
}

a.text-muted:hover {
    color: #232754 !important;
}

/* Checkbox alignement */
.form-check-label {
    margin-left: 5px;
}

/* === ICONES (mot de passe) === */
.input-group .btn {
    background-color: #f8f9fa;
    border-color: #ced4da;
}

.input-group .btn:hover {
    background-color: #e9ecef;
}

/* === PIED DE PAGE === */
.auth-footer {
    text-align: center;
    font-size: 0.85rem;
    color: #777;
    margin-top: 20px;
}

/* === RESPONSIVE === */
@media (max-width: 576px) {
    .auth-card {
        width: 90%;
        margin-top: -100px;
    }

    .auth-header {
        padding: 80px 0 60px;
    }
}
