.container{
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
form{
    background-color: white;
    display: flex;
    flex-direction: column;
    padding: 10px 15px;
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}
form h4{
    color: #bc9d5b;
    font-weight: 800;
    font-size: 2em;

}
form input, form textarea{
    border: 0;
    margin: 10px 0;
    padding: 20px;
    outline: none;
    background: #f5f5f5;
    font-size: 16px;
}
form button{
    padding: 15px 30px;
    background-color: white;
    color:#414141;
    font-size: 2em;
    border: 4px solid #b1f069;
    outline: none;
    cursor: pointer;
    width: 150px;
    margin: 20px auto 0;
    border-radius: 30px;
    transition: ease-out 0.3s;
    font-size: 1.5em;
}

form button:hover{
    box-shadow: inset 145px 0 0 0 #b1f069;
    color: white;
}