@import url("https://fonts.googleapis.com/css2?family=Righteous&family=Work+Sans:wght@100;300;400;600;800&display=swap");
* {
    box-sizing: border-box;
    font-family: "Work Sans";
    margin: 0;
    padding: 0;
}
.contenido {
    background: linear-gradient(
            to bottom,
            rgba(128, 130, 133, 0.8),
            rgb(57, 58, 59)
        ),
        url(../assets/images/fondo.jpg);
    background-size: cover;
    height: 100vh;
    color: #fff;
    display: flex;
    align-items: center;
}
.contenido form {
    padding: 20px;
    background-color: #0e181e;
    max-width: 500px;
    margin: auto;
    text-align: center;
    border-radius: 40px;
}
.contenido form img {
    margin-top: 40px;
    display: block;
    width: 70%;
    margin: auto;
    border-radius: 50%;
}
.contenido form h1 {
    margin-top: 10px;
    padding: 10px;
    font-size: 30px;
    font-family: "Righteous";
    color: #366e84;
}
.contenido form .cont {
    padding: 10px;
    max-width: 400px;
    margin: 5px auto;
}
.contenido form .cont label {
    display: block;
    text-align: left;
    margin-left: 50px;
    padding-bottom: 10px;
    font-family: "Righteous";
    color: #8ec4d2;
}
.contenido form .cont .warinig {
    display: block;
    text-align: left;
    margin-left: 50px;
    padding-bottom: 10px;
    padding-top: 10px;
    color: red;
}
.contenido form .cont .text {
    font-size: 15px;
    width: 60%;
    height: 30px;
}
.separator {
    border-bottom: 2px solid #dcedf1;
}
.contenido form .boton {
    font-size: 18px;
    width: 30%;
    height: 30px;
    margin-top: 10px;
    cursor: pointer;
    background-color: #dcedf1;
    color: #315a6d;
    border: solid #315a6d;
}
.contenido form .boton:hover {
    background-color: #315a6d;
    color: #dcedf1;
}
