html{
    box-sizing: border-box;
}

:root{
    --letra: #64655d;
    --letra2: #93948e;
}

*{
    box-sizing: border-box;
}


form{
    width: 20vw;
    background-color: white;
    border-radius: 10px;
    margin-top: 220px;
    margin-left: 200px;
}

form div:first-child{
    padding: 30px;
}

form h1{
    color: var(--letra);
    font-size: 2em;
    margin: 0px;
    margin-bottom: 70px;
}


form div:first-child p{
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

form div:first-child p a{
    color: var(--letra2);
    text-decoration: none;
    font-size: 0.9em;
}

form input{
    margin-top: 20px;
    border: 0px;
    border-bottom: 1px solid var(--letra2);
    display: block;
    width: 100%;
    padding: 6px;
    color: var(--letra2);
}

form div:last-child{
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.boton{
    border: 0px;
    padding: 25px;
    color: white;
}

.colorvioleta{
    background-color: #653cb6;
    border-radius: 0px 0px 0px 10px;
}

.colornaranja{
    background-color: #f55930;
    border-radius: 0px 0px 10px 0px;
}


@media (max-width: 1300px) {
    body{
        background-size: 300%;
        background-position: -220% 1%;
    }

    form{
        width: 60vw;
        background-color: white;
        border-radius: 10px;
        margin: auto;
        margin-top: 100px;
    }
}

@media (max-width: 800px) {
    body{
        background-size: 300%;
        background-position: -220% 1%;
    }

    form{
        width: 90vw;
        background-color: white;
        border-radius: 10px;
        margin: auto;
        margin-top: 100px;
    }

}