body{
    background-color: aquamarine;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.box{
    width:400px;
    height:500px;
    background-color: blanchedalmond;
    border-radius: 20px;
}

h1{
    font-size: 35px;
    text-align: center;
}

form{
    width:350px;
    height:200px;
    margin-left: 50px;
    margin-top: 50px;
}

input{
    width:200px;
    height: 30px;
    font-size: 18px;
}

button{
    width:120px;
    height: 40px;
    background-color: orange;
    font-size: 18px;
    color: white;
    border: none;
    border-radius: 20px;
}