*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    display: flex;
    height: 100vh;
    background: rgb(131,58,180);
    background: linear-gradient(90deg, rgba(131,58,180,1) 0%, rgba(253,29,29,1) 80%, rgba(252,176,69,1) 100%);
    justify-content: center;
    align-items: center;
}

.login{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    background-color: white;
    border-radius: 15px;
    width: 500px;
}
.titulo{
    display: flex;
    margin-bottom: 20px;
    width: 100%;
}

.line{
    background-color: blue;
    width: 10px;
    margin-right: 8px;
}

.encabezado{
    text-align: center;
}
.form{
    display: flex;
    flex-direction: column;
    width: 85%;
}
.remember{
    margin-top: 20px;
}
.remember a{
    text-decoration: none;
    color: black;
}
@media (max-width: 768px) {
    .login {
        max-width: 90%;
        padding: 15px;
    }
}