.logo-icona {
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-img {
    width: 170px;   /* ajusta el tamaño */
    height: auto;
    /*border-radius: 10px; /* opcional */

}
/* ===== VIDEO DE FONDO ===== */
#bg-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Hace que el video cubra toda la pantalla */
    z-index: -2;
    
}
#bg-video {
    /*filter: brightness(0.6) contrast(1.2);*/
}
/* CAPA OSCURA ENCIMA DEL VIDEO */
.video-overlay {
    position: fixed;
    inset: 0;
    background: rgb(255 255 255 / 48%);
    z-index: -1;
}

/* Capa oscura para que el login se vea bien */
body.login-page::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6); /* oscurece el video */
    z-index: -1;
}

/* Opcional: quita fondo azul viejo */
body.login-page {
    background: none !important;
}
