*{
    box-sizing: border-box;
}
body{
    margin: 0;
    background: linear-gradient(to right, rgb(255, 115, 0), rgb(253, 11, 221));
}
div{
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
}
form{
    margin: auto;
    width: 320px;
    height: 360px;
    background-color: rgb(240, 239, 239);
    text-align: center;
    border-radius: 20px;
    padding: 20px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 15px white;
}
.contenido{
    height: 80%;
}
.inputs-form label{
    text-align: start;
    margin-bottom: 5px;
}
.inputs-form input{
    padding: 5px 10px;
    border: 1px solid rgb(255, 115, 0);
    outline: none;
    border-radius: 50px;
    background-color: rgb(255, 181, 121);
}
.inputs-form input:focus{
    background-color: rgb(248, 162, 91);
}
.boton-enviar button{
    width: 80%;
    padding: 10px 0;
    border-radius: 10px;
    margin: auto;
    border: none;
    background-color: rgb(255, 184, 125);
}
.boton-enviar button:hover{
    background-color: rgb(252, 159, 84);
}

@media screen and (max-width:340px){
    form {
    width: 93%;
    }
}