/*pagina inicion sesion login*/

.login {
    background-image: url(../img/backLogin.jpg);
    height: 100vh;
    display: grid;
    align-content: center;
    justify-content: center;
    background-repeat: round;
    background-size: contain;
   
}

.filtro {
    height: 100%;
    width: 100%;
    position: absolute;
    /*background-color: #7b7b7b63;*/
    background: radial-gradient(#ffffff54 0%, #2e2e2edb 98%);
    z-index: -1;
}


.contLogin{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px;
    
}




.titu{
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    color: #ffffff;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #454545;

}

.inicieS {
    color: #ffffff;
    -webkit-text-stroke-width: 0.1px;
    -webkit-text-stroke-color: #454545;
}

.cuadroLogin {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #fff;
    border-radius: 10px;
    position: relative;
    box-shadow: 3px 3px 0px 0px #00000034;

}


.inputs {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 1;
}

.inpUser,
.inpPass {
    width: 100%;
    border: none;
    background-color: #F1F1F1;
    border-radius: 5px;
    height: 40px;
    padding: 0px 20px;
    box-shadow: 3px 3px 0px 0px #00000034;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;

    &:focus-visible {
        outline: #2F6F4F 2px solid;
    }
}

.animar {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
}





.btnIngresar {
    background-color: #FFBB54;
    padding: 8px;
    width: 55%;
    border-radius: 10px;
    border: none;
    box-shadow: 3px 3px 0px 0px #00000034;

    &:hover {
        background-color: #f7aa38;
    }
}

.error {
    display: none;
    position: absolute;
    top: 0px;
    text-align: center;
    color: #ea868f;
    font-weight: 600;
    /* background: #2c0b0e; */
    padding: 10px;
    border-radius: 10px;
    transition: 1s;

}

.carga {
    width: 100%;
    height: 100vh;
    position: absolute;
    z-index: 99;
    background-color: #c9c9c999;
    top: 0px;

}

.logos {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.figLogo{
    width: 200px;
}

.btnVolver{
    color: #D03A3A;
    background-color: #fff;
    padding: 3px 10px;
    text-decoration: none;
    border-radius: 5px;
    
    transition: all .3s;
    font-weight: 600;

}

.flechaBtnVolver{
    fill: #D03A3A;
    transition: all .3s;
}

.btnVolver:hover{
    color: #fff;
    background-color: #D03A3A;
    box-shadow: 3px 3px 0px 0px #00000034;
}

.btnVolver:hover .flechaBtnVolver{
    fill: #fff;
}
