*{
    box-sizing: border-box;
}
:root {
    --letra: #64655d;
    --letra2: #93948e;
}

body {
    background-image: url(fondo.webp);
    background-repeat: no-repeat;
    background-size: auto;
    padding: 0px;
    margin: 0px;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--letra);

}

#formulario {
    background-color: white;
    border-radius: 6px;
    width: 25%;
    min-width: 360px;
    position: fixed;
    top: 25%;
    left: 15%;
}

#formulario h1 {
    color: var(--letra);
    padding: 30px;
}

#formulario input {
    border: 0px;
    border-bottom: 1px solid var(--letra2);
    display: block;
    padding: 10px;
    width: 90%;
    margin: auto;
    margin-top: 16px;
}

#formulario input::placeholder {
    color: var(--letra2);
}

.link{
    color: var(--letra2);
    text-decoration: none;
    display: block;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 0.8em;
    text-align: center;
}

.boton50{
    display: block;
    width: 50%;
    float: left;
    color: white;
    text-align: center;
    padding: 20px;
    text-decoration: none;
    font-size: 0.8em;
}

.bgvioleta{
    background-color: #653cb6;
}

.bgnaranja{
    background-color: #f55930;
}

.borderradius4{
    border-radius: 0px 0px 0px 6px;
}

.borderradius3{
    border-radius: 0px 0px 6px 0px;
}

.clear{
    float: none;
    clear: both;
    width: 100%;
    height: 0px;
}