section{
    position: absolute;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background-color: #F1F5F9;
    /* color: #64748B; */
    color: #333A48;
    font-size: 0.88vw;
}


.general{
    display: flex;
    flex-direction: column;
    width: 30%;
    min-height: 40%;
    /* max-height: 40%; */
    background-color: #ffffff;
    border-right: 1px solid #E2E8F0;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 1%;
}



.cuadro-registro, form, .input-field{
    display: flex;
    height: 100%;

    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.inicio-sesion{
    width: 100%;
}


.titulo, .input-field{
    /* width: 100%; */
    margin-bottom: 5%;
    
    /* justify-content: space-between; */
}

.input-field label{
    font-weight: 600;
}

.input-field input{
    width: 100%;
    height: 1.9vw;
    padding: 10px; /* Espaciado interno */

    border: 1px solid #ccc; /* Borde sutil */
    border-radius: 4px; /* Bordes redondeados */
    outline: none; /* Sin contorno */
    transition: border-color 0.3s ease; /* Animación al enfocarse */

}

.helptext{
    font-size: 0.60vw;
}

button{
    border: none;
    border-radius: 20px;
    width: 400px;
    height: 40px;
    background-color: #0a58ca;
    color: #cedbeb;
    margin-bottom: 5%;
}

