/* LOGIN Y REGISTRO*/

input, select, textarea{
    background-color: white;
    border: none;
    border-radius: 10px;
    color: var(--azul_oscuro);
    padding: .8rem 3rem;
    outline: none;
}
option{
    font-size: 0.8rem;
}

label{
    font-size: 1rem;
}

input[type="submit"]{
    background-color: var(--naranja);
    color: white;
    font-weight: bold;
}

.registrarse_button{
    background-color: var(--azul-claro);
    color: var(--azul_oscuro);
    font-weight: bold;
    border: none;
    border-radius: 10px;
    padding: .8rem 3rem;
    text-decoration: none;
}

.passwordImage{
    position: absolute;
    top: 25%;
    right: 1.5rem;
    max-width: 1.5rem;
    cursor: pointer;
}

.faq a, .toosoon a{
    color: var(--amarillo);
    text-decoration: none;
}
.faq a:hover, .toosoon a:hover{
    color: var(--blanco) !important;
}

.maintext{
    font-size: 1rem;
    font-weight: 600;
}
.left{
    display: inline-block;
    width: 150%;
    height: 0.8rem;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-right: 40px solid var(--naranja);
}
.right{
    display: inline-block;
    width: 150%;
    height: 0.8rem;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 40px solid var(--naranja);
}
.recPass{
    color: white;
}

/* PREREGISTRO */
.preregistro{
    text-align: center;
    border-radius: 5px;
    background-color: var(--naranja);
}
.preregistro a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    display: inline-block;
    width: 100%;
}
.noasistencia{
    visibility: hidden;
    transition: all 0.5s linear;
}
.visible{
    visibility: hidden;
    transition: all 0.5s linear;
}

/* FORMULARIO DE REGISTRO */
form.registro .later{
    color: white;
    font-weight: 600;
    font-size: 1rem;
    text-underline-offset:5px
}
form.registro label{
    color: white;
    font-weight: 600;

}
form.registro label.privacidad, form.registro label.checkRedes, form.registro label.checkMaterialDigital{
    font-size: .7rem;
}
.leer_mas{
    cursor: pointer;
}
@media screen and (min-width:768px){

    label{
        font-size: 1.2rem;
    }
    
    option{
        font-size: 1rem;
    }

}