/* Arrière-plan fixe avec image */
.background-image {
    background-image: url('BG_Valmousse.jpg'); /* Remplacez par l'URL de votre image de fond */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

/* Style de la carte de connexion */
.card {
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 15px;
    padding: 20px;
}

/* Logo */
.card img {
    width: 100px;
    margin-bottom: 15px;
}

/* Bouton */
.btn-primary {
    background-color: #3d6b3d;
    border-color: #3d6b3d;
}
.btn-primary:hover {
    background-color: #2f4f2f;
    border-color: #2f4f2f;
}

/* Texte du formulaire */
.form-label {
    font-weight: bold;
}

/* Alerte d'erreur de connexion */
.alert-danger {
    background-color: rgba(255, 0, 0, 0.1);
    color: #b70000;
    font-weight: bold;
    border: none;
    border-radius: 8px;
}
/* Style pour le bouton de retour à l'accueil */
.btn-secondary {
    font-size: 0.85rem;
    color: #fff;
}
.btn-secondary:hover {
    color: #f1f1f1;
}
