@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background: url(../imagenes/fondo-login.png);
    /* background: #fff; */
    background-size: cover;
    background-position: center;
    overflow-x: hidden;
    overflow: hidden;
}

.fotos{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68%;
    height: 800px;
    background: url(/images/img\ login\ admin.jpg);
    background-size: cover;
    background-position: center;
    left: 0;
    overflow-x: hidden;
    /* z-index: 999; */
}

.fondo{
    position: relative;
    width: 400px;
    height: 550px;
    top: 0;
    /* left: 67%; */
    background: #F6F1F1;
    border: 2px solid rgba(255, 255, 255, .5);
    border-radius: 20px;
    backdrop-filter: blur(70px);
    box-shadow: 0 0 60px rgb(0, 0, 0);
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transform: scale(1);
    transition: transform .5s ease, height .2s ease;
}

/* .logo{
    position: fixed;
    width: 250px;
    height: 250px;
    top: 20px;
}

.logo img{
    width: 100%;
    height: 100%;
} */

.fondo .form-box{
    width: 100%;
    padding: 40px;
}

.fondo .form-box.login{
    transition: transform .18s ease;
    transform: translateX(0);
}

.fondo.active-login .form-box.login{
    transition: none;
    transform: translateX(-440px);
}

.fondo .form-box.confirmar{
    position: absolute;
    transition: none;
    transform: translateX(440px);
}
.fondo.active-confirmar .form-box.confirmar{
    transition: transform .18s ease;
    transform: translateX(0);
}

.fondo .form-box.recuperar{
    position: absolute;
    transition: none;
    transform: translateX(840px);
}
.fondo.active-recuperar .form-box.recuperar{
    transition: transform .18s ease;
    transform: translateX(0);
}

.fondo h2{
    font-size: 2em;
    color: #000000;
    text-align: center;
    /* margin-top: 10px; */
}

.form-box .logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
}

.form-box .logo-img{
    width: 200px;
    height: 190px;
}
    
.logo img{
    width: 100%;
    height: 100%;
    
    /* border: solid 3px #9a9a9a; */
}

.contenedor-input{
    position: relative;
    width: 100%;
    height: 35px;
    /* border-bottom: 2px solid #555555; */
    margin: 20px 0;

}

.contenedor-input-confirmar{
    position: relative;
    width: 100%;
    height: 35px;
    /* border-bottom: 2px solid #555555; */
    margin: 20px 0;

}

#input1{
    margin-bottom: 40px;
}

.contenedor-input label{
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    font-size: 1em;
    color: #7d7d7d;
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
}

.contenedor-input-confirmar label{
    position: absolute;
    /* top: 50%; */
    left: 5px;
    transform: translateY(-120%);
    font-size: 1em;
    color: #7d7d7d;
    font-weight: 500;
    pointer-events: none;
    transition: .5s;
}

.contenedor-input input:focus~label,
.contenedor-input input:valid~label{
    top: -5px;
    color: transparent;
}

.contenedor-input input{
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 5px;
    font-size: 1.1em;
    color: #4b4b4b;
    font-weight: 600;
    padding: 0 35px 0 5px;
    background: #ffffff;
    border: none;
}

.contenedor-input-confirmar input{
    width: 100%;
    height: 100%;
    outline: none;
    border-radius: 5px;
    font-size: 1.1em;
    color: #4b4b4b;
    font-weight: 600;
    padding: 0 35px 0 5px;
    background: #ffffff;
    border: none;
}

.contenedor-input .icono{
    position: absolute;
    right: 9px;
    font-size: 1.3em;
    color: #19A7CE;
    line-height: 35px
}

.contenedor-input-confirmar .icono{
    position: absolute;
    right: 9px;
    font-size: 1.3em;
    color: #19A7CE;
    line-height: 35px
}

.roles{
    margin-bottom: 30px;
    border-bottom: 2px solid #6e6d6d;
    position: relative;
}

.roles h3{
    top: 0;
    margin-bottom: 7px;
    font-size: 1.2em;
    font-weight: 500;
    color: #d4d4d4;
    
}

.roles label{
    color: #d4d4d4;
    /* background: rgba(0, 0, 0, .9); */
    margin-right: 15px;
    margin-bottom: 40px;
}


.recordar-login{
    font-size: .9em;
    color: #d4d4d4;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}
.recordar-login label input{
    accent-color: #146C94;
    margin-right: 3px;
}

.recordar-login a{
    color: #d4d4d4;
    text-decoration: none;
}

.recordar-login a:hover{
    color: #146C94;
    text-decoration: underline;
}

.btn{
    width: 100%;
    height: 45px;
    background: #000000;
    box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.2);
    border: none;
    outline: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.3em;
    color: #F6F1F1;
    font-weight: 500;
}

.btn:hover{
    background: #19A7CE;
    color: #F6F1F1;
}

.problemas-login{
    font-size: .7em;
    color: #676767;
    text-align: center;
    font-weight: 500;
    margin: 18px 0 10px;
}

.problemas-login p a{
    color: #828282;
    text-decoration: none;
    font-weight: 600;
}

.problemas-login p a:hover{
    color: #146C94;
    text-decoration: underline;
}

.contactos{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* background: #fff; */
    /* gap: 5px; */
    transition: .5s;
    transform: scale(1);
}

.contactos.active{
    transform: scale(1);
}

.contactos .redes{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 10px;
}

.redes #facebook{
    font-size: 2em;
    color: blue;
    transition: .5s;
}

.redes #facebook:hover{
    transform: translateY(-5px);
}

.redes #whatsapp{
    font-size: 2em;
    color: rgb(0, 184, 31);
    transition: .5s;
}

.redes #whatsapp:hover{
    transform: translateY(-5px);
}

.redes #instagram{
    font-size: 2em;
    color: rgb(210, 0, 137);
    transition: .5s;
}

.redes #instagram:hover{
    transform: translateY(-5px);
}

.contac{
    width: 100%;
    display: flex;
    justify-content: center;
    color: #fff;
    gap: 20px;
    font-size: .8em;
}
