*{
    margin: 0;
    padding:0;
    box-sizing: border-box; /*Hace que los elementos no tengan espacios inecesarios en el width y height*/
    font-family: 'Times New Roman', Times, serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('../../Imagenes/pizzaFondo.jpg');
    background-size: cover;
    background-position: center;
    min-height: 100vh;

}

.formulario{
    background-color: chocolate;
    padding: 20px;
    width: 420px;
    color: aliceblue;
    padding: 30px 40px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(9px);
    width: 90%; /*En pantallas pequeñas, ocupará el 90% del ancho disponible*/
    max-width: 420px; /*En pantallas grandes, solo ocupara 420px*/
}

.formulario h1{
    width: 100%;
    text-align: center;
   background: linear-gradient(90deg, #E63946, #FFD60A, #4CAF50, black, #FFFFFF);
    background-position: -100%; /*El fondo empieza desde la izquierda*/
    background-size: 200%;
    background-clip: text; /*Hace que el fondo multicolores se recorte a la forma del label*/
    color: transparent;
    font-family: exo;
    font-size: 2.5rem;
    animation: shimmer 2s linear infinite;
    font-weight: 200px;
}

@keyframes shimmer{
    to{
        background-position: 100%; /*Va hacia la derecha*/
    }
}

.formulario .input-box{
    width: 100%;
    height: 50px;
    margin: 20px 0;
    position: relative;
}

.formulario input[type="text"],
.formulario input[type="password"] {
    width: 100%;
    height: 50px;
    border-radius: 20px;
    border: none;
    outline: none;
    border: 2px solid rgba(255,255,255,.2);
    background: transparent;
    font-size: 15px;
    color: white;
    padding: 20px ;
    
}

.formulario i{
    position: absolute;
    right: 20px;
    top: 30%
}

.formulario .remember-forgot{
    display: flex;
    justify-content: space-between;
    font-size: 14.5px;
}

.remember-forgot a{
    color: white;
    text-decoration: none;
     font-weight: 600;
}

.remember-forgot a:hover{
    text-decoration: underline;
}

.boton{
    margin-top: 20px;
    background-color: #E1A95F;
    width: 100%;
    height: 45px;
    border-radius: 40px;
    outline: none;
    box-shadow: 0 0 10px rgba(0,0,0,.1);
    transition: 0.4s ease;
    
}

.register{
    display: flex;
    text-align: center;
    margin-left: 23.3%;
    margin-top: 20px;
    
}

.register a{
    text-decoration: none;
    color: white;
    margin-left: 20px;
    font-weight: 600;
}

.register a:hover{
    text-decoration: underline;
}


.boton:hover{
    background-color: white;
    cursor:pointer;
    color: black;
}