

.contenedor-formulario{

    width: 80%;
    max-width: 650px;
    background: rgba(0, 0, 0, 0.5);
    margin: 200px auto;
    color: white;
    border-radius: 10px; 
    padding: 30px 40px;
    backdrop-filter: blur(3px);
}

.titulo-formulario{
    font-size: 36px;
    text-align: center;
}

.contenedor-formulario .input-box{
    position:relative;
    width: 100%;
    height: 50px;
    margin: 30px 0;
    
}

.input-box input{
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 40px;
    color: white;
    font-size: 16px;
    padding: 20PX 45PX 20px 20px;

}

.input-box input::placeholder{
    color: white;
}
.input-box i{
    position: absolute;
    right: 20px;
    top:50%;
    transform: translateY(-50%);
    font-size: 1.2em;
}

.contenedor-formulario .recordar-usuario-olvido-pass{
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin: 0 10px 10px 10px;


}

.recordar-usuario-olvido-pass label input{

    accent-color: white;
    
}

.recordar-usuario-olvido-pass a{
    color:rgb(206, 217, 226);
    text-decoration: none;
}

.recordar-usuario-olvido-pass a:hover{
    color: rgb(88, 127, 255);
    text-decoration: underline;
}

.contenedor-formulario .btn-entrar{
    width: 100%;
    
    height: 40px;
    border: none;
    background: #ffffff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 5px 15px rgba(0,0,2);
    font-size: 16px;
    color: #333;
    font-weight: 600;
}

.link-registro{
    text-align: center;
    margin: 10px 0;
}
.contenedor-formulario .link-registro span{
    
    color: #beb536;;
    font-weight: 600;
   
}

.link-registro p span:hover{
    cursor: pointer;
    color: rgb(88, 127, 255);
    text-decoration: underline;
}

#formulario-registro{
    display: none;
}

#formulario-create-user{
    display: block;
}