@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300&family=Poppins:wght@300;800&display=swap');


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins";
}

body{
    background: #000;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}


.container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 110vh;
    background: url(fondo.jpg) no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 10px;


}

.container .content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 80px;
    color: #e4e4e4;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.7);
}

.content .logo{
    width: 300px;
    margin-top: 20px;
    
}

.content h2{
    font-size: 40px;
}

.container .logreg-box{
    position: absolute;
    top: 0;
    right: 0;
    width: calc(100% - 50%);
    height: 100%;
    overflow: hidden;

}

@media(max-width:960px){
    .container .logreg-box{
        width: calc(100% - 0.3%);

    
    }

}
  


.logreg-box .form-box {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    background: transparent;
    backdrop-filter: blur(20px);
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    color: #e4e4e4;
}

.logreg-box .form-box.login{
    transform: translateX(0);
    transition: transform .2s ease;   
    transition-delay:.2s ; 
}

.logreg-box.active .form-box.login{
    transform: translateX(1000px);
    transition-delay:0s;
}

.logreg-box .form-box.register{
    transform: translateX(1000px);    
    transition: transform .2s ease;
    transition-delay:0s;
}

.logreg-box.active .form-box.register{
    transform: translateX(0);
    transition-delay: .2s;  
}




.logreg-box .form-box.register{
    transform: translateX(1000px);
}

.form-box h2 {
    font-size: 32px;
    text-align: center;

}

.form-box .input-box{
    position: relative;
    width: 340px;
    height: 50px;
    border-bottom:  2px solid #e4e4e4;
    margin: 30px 0;
}



.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 16px;
    color: #e4e4e4;
    font-weight: 500;
    padding-right: 28px;


}

.input-box label{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
    font-weight: 500;
    font-size: 16px;
    transition: .5s ease;
    
}

.input-box input:focus~label,
.input-box input:valid~label {
    top: -5px;
}
.input-box .icon{
    position: absolute;
    right: 0;
    top: 13px;
    font-size: 19px;
}

.form-box .remember-forgot {
    font-size: 14.5px;
    font-weight: 500;
    margin: -15px 0 15px;
    display: flex;
    justify-content: space-between;
}


.remember-forgot label input{
    accent-color: #e4e4e4;
    margin-right: 3px;
}
.remember-forgot a{
    color: #e4e4e4;
    text-decoration: none;
}

.login-register a{
    text-decoration: none;
    color: white;
    font-size: 15px;
}

.remember-forgot a:hover{
    text-decoration: underline;
}

.btn{
    width: 100%;
    height: 45px;
    background: #e0bd0b;
    border: none;
    outline: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    color: #000;
    font-weight: 500;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);


}

.form-box .login-register{
    font-size: 14.5px;
    font-weight: 500;
    text-align: center;
    margin-top:25px ;
}


.success{
    position: absolute;
    font-size: 300px;
    color: #e0bd0b;
}