/* Styles spécifiques à la page de connexion */

/* pleine hauteur + fond sobre */
html, body {
    height: 100%;
    background-color: #f6f7f9;
}

h1 {
    color: #0f466c;
}
/* wrapper centré avec flexbox */
.login-wrap {
    min-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

/* carte Bootstrap customisée */
.login-card {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
}

/* titre / marque */
.login-card h1 {
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* bloc erreur/info */
#wrapper_erreur .alert {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* inputs */
#formulaire .form-control:focus {
    box-shadow: none;
    border-color: #0d6efd; /* bleu bootstrap */
}

/* checkbox alignée */
#wrapper_store {
    font-size: 0.9rem;
}

/* bouton connexion */
#wrapper_connexion .btn {
    padding: 0.6rem;
    font-weight: 500;
}

.login-card .card-img-top {
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}