/* Styles pour les pages d'authentification */

/* Image de fond uniquement */
body.auth-page {
    background: url('/images/auth-background.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

/* Cartes des formulaires plus transparentes */
body.auth-page .card {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

/* En-tête de carte légèrement transparent */
body.auth-page .card-header {
    background: rgba(13, 110, 253, 0.9) !important;
    backdrop-filter: blur(5px);
}

/* Modal également transparente */
body.auth-page .modal-content {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
}
