/* headerlogin.css */

/* Fondo oscuro base + logo centrado semitransparente */
body {
    background-color: #1a1a1a !important;
    background-image: url('../images/fondo.png');
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
    background-attachment: fixed;
}

/* Capa de opacidad sobre el logo para que no tape el formulario */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url('../images/fondo.png');
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 100vh;
    opacity: 0.07;
    pointer-events: none;
    z-index: 0;
}

/* El contenido por encima del pseudo-elemento */
body > *, main, .auth-container {
    position: relative;
    z-index: 1;
}

/* Sin navbar roja */
.navbar {
    background: transparent !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

/* Logo centrado en navbar */
.nav-container-login {
    justify-content: center !important;
}