*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
h1{
    margin-top: 50px;
    width: 100%;
    text-align: center;
}
form{
    width: 40%;
    height: 600px;
    margin: 0 auto;
    border-radius: 15px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background-color: rgb(145, 180, 145);
}
form input{
    width: 70%;
    height: 50px;
    padding-left: 20px;
    border-radius: 15px;
    background-color: rgb(204, 199, 199);
    font-size: 20px;
    border: none;
}
form button{
    width: 40%;
    height: 50px;
    border: none;
}
.form_two{
    height: 400px;
}