/* Styles pour les pages d'authentification */

/* Vidéo de fond */
body.auth-page {
    position: relative;
    min-height: 100vh;
}

body.auth-page #auth-video-background {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
}

body.auth-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
    pointer-events: none;
}

/* Conteneur principal au-dessus de la vidéo */
body.auth-page #containerPublic {
    position: relative;
}

/* 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 et au-dessus de tout */
body.auth-page .modal-backdrop {
    z-index: 1050 !important;
}

body.auth-page .modal {
    z-index: 1055 !important;
}

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