head{
    background-color: rgb(0, 0, 0);
}

body{
    background-color: rgb(255, 255, 255);
    
}


#video-background {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto;
    z-index: -1;
    opacity: 0.5;
    object-fit: cover !important; /* Ajusta el video para que cubra todo el contenedor */
    object-position: center !important; /* Centra el video horizontal y verticalmente */
}

#video-background2 {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%; 
    min-height: 100%;
    width: auto; 
    height: auto;
    z-index: -1;
    object-fit: cover !important; /* Ajusta el video para que cubra todo el contenedor */
    object-position: center !important; /* Centra el video horizontal y verticalmente */
}




h1{
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.mensaje_final {
    display: flex;
    justify-content: center; /* Centra horizontalmente */
    align-items: center; /* Centra verticalmente */
    height: 100vh; /* Usa el 100% del alto de la ventana */
    font-size:larger;
  }
  

.titulo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px; /* Ajusta el margen superior según sea necesario */
    color: black;
}

.titulo parpadeo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px; /* Ajusta el margen superior según sea necesario */
    color: black;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.parpadeo {
    animation: blink 1.5s infinite;
    color: black;
}


.login-logo img {
    height: 300px;
    width: 300px;
}


.seccion-titulo {
    margin-top: 50px;
    font-size: 30px;
    color: rgb(255, 255, 255);
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
    background-color: rgb(19, 161, 249);
    border-radius: 50px;    
    text-align: center; /* Centra el texto horizontalmente */

}

.ayuda {
    position: absolute;
    background-color: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 999; /* Asegúrate de que esté en la parte superior */
}



.formulario {
  
    padding: 20px;
    border-radius: 20px;
    background-color: rgb(0, 0, 0); /* Fondo transparente */
    
    
}

.help-icon {
    cursor: pointer;
    margin-left: 5px; /* Espacio entre el texto y el icono */
}


/* Estilos para el recuadro de cada sección de datos */
.datos-seccion {
    border: 3px solid #000000; /* Borde sólido de color gris */
    border-radius: 5px; /* Bordes redondeados */
    padding: 20px; /* Espacio interno */
    margin-bottom: 20px; /* Margen inferior para separar las secciones */
    background-color: white;
}

.datos-seccion input {
    border: 2px solid rgb(7, 155, 219);
    border-radius: 20px;
}

.datos-seccion select {
    border: 2px solid rgb(7, 155, 219);
    border-radius: 20px;
}

label{
    color: rgb(0, 0, 0);
    font-size:20px;
    font-weight: 100;
}

.datos-seccion{
    margin-top: 20px;
}


/* Estilos para el mensaje de error */
.mensaje-error {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

/* Estilos para el botón de cerrar del modal */
.cerrar-modal {
    position: absolute;
    top: 5px;
    right: 5px;
    cursor: pointer;
    font-weight: bold;
}