section {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 80vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/images/fondo.jpg);
    /* border: dashed red 2px; */
}

footer {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    height: 191px;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url(/images/fondo.jpg);
    
    /* border: dashed gold 2px; */
}
/*Fuente*/
.varela-round-regular {
    font-family: "Varela Round", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  h1{
    color: #00d1ec;
    text-align: center;
  }
  h2{
    color:azure;
    text-align: center;
  }
  p{
    color: #00d1ec;
    text-align: justify;
  }
  label
  {
    color: #00d1ec;
    font-size: 25px;
    text-align: justify;
  }
/*Fuente*/

.formulario_fondo {
    width: 350px;
    height: 320px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
    background-color: rgba(4, 76, 123, 0.8);
    border-radius: 20px; 
    border: 5px solid #00d1ec;
}
.formulario_fondo_codigos {
    width: 650px;
    height: 720px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
background-color: rgba(4, 76, 123, 0.8);
    border-radius: 20px; 
    border: 5px solid #00d1ec;
    margin-top: 200px;
}

.formulario_fondo_Registro {
    width: 800px;
    height: 600px;
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
background-color: rgba(4, 76, 123, 0.8);
    border-radius: 20px; 
    border: 5px solid #00d1ec;
}
.formulario_fondo_Confirmacion {
    width: 450px;
    height: 600px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
background-color: rgba(4, 76, 123, 0.8);
    border-radius: 20px; 
    border: 5px solid #00d1ec;
}
.formulario_fondo_sms {
    width: 650;
    height: 150px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 20px;
background-color: rgba(4, 76, 123, 0.8);
    border-radius: 20px; 
    border: 5px solid #00d1ec;
}
/* Ajuste para pantallas móviles */
@media (max-width: 768px) {
    .formulario_fondo_Registro {
        width: 90%; /* Ajuste el ancho al 90% del viewport */
        height: auto; /* Permite que la altura se ajuste automáticamente */
        padding: 20px; /* Agrega espacio interno para evitar que los elementos queden muy cerca del borde */
        max-width: 350px; /* Limita el ancho máximo para evitar que se expanda demasiado */
        top: 10%; /* Ajusta la posición en la pantalla */
        left: 50%;
        transform: translateX(-50%); /* Centra horizontalmente */
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .formulario_fondo_Registro {
        width: 95%; /* Ancho más pequeño para pantallas muy pequeñas */
        padding: 15px;
        top: 5%;
        text-align: justify;
    }
}
@media (max-width: 768px) {
    .formulario_fondo_Confirmacion {
        width: auto; /* Ajuste el ancho al 90% del viewport */
        height: auto; /* Permite que la altura se ajuste automáticamente */
        top: 10%; /* Ajusta la posición en la pantalla */
        left: 50%;
        transform: translateX(-50%); /* Centra horizontalmente */
        text-align: justify;
    }
}

@media (max-width: 480px) {
    .formulario_fondo_Confirmacion {
        width: auto; /* Ancho más pequeño para pantallas muy pequeñas */
        padding: auto;
        top: 5%;
        text-align: justify;
    }
}

/*Boton*/
.btn-custom {
    background-color: #2623F7; 
    color: aliceblue; 
    border: none;
}

.btn-custom:hover {
    background-color: #23A6F7; 
}

/*Boton*/
