/* 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(--amarillo-vulco);
    color: white;
    font-weight: bold;
    border-radius: 45px;
    padding: .6rem 2rem;
    border: 2px solid var(--amarillo-vulco);
    cursor: pointer;
    box-shadow:
        inset -3px -3px 4px rgba(255,255,255,0.75),
        inset 3px 3px 4px rgba(255,255,255,0.75);   
}


.registrarse_button {
    position: relative;
    display: inline-block;
    padding: 1.1rem 2.6rem;
    background: #3C6491;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    border-radius: 999px;
    border: 0;
    height: 3.8rem;
}
.registrarse_button::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 3px;

    background: linear-gradient(
        135deg,
        #ffffff 0%,     
        #3C6491 45%,    
        #3C6491 75%,    
        #ffffff 100%     
    );
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
}


.passwordImage{
    position: absolute;
    top: 30%;
    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;
    }

}
.linkfaq a{
    color: var(--blanco);
    text-decoration: none;
}