@media only screen and (max-width: 600px) {
    
    .form-container {
        padding: 20px;
    }


    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
        width: 100%;

    }



}

@media only screen and (min-width: 601px) {
    .form-container {
        width: 32%;
        padding: 20px;
    }
    


.container {
 display: flex;
 justify-content: center;
 flex-direction: row;
 height: 100%;
 width: 100%;
}

.boxes {
    padding: 20px; 
    font-size: 20px; 
}

}

.form-container {
   background-color: aliceblue; 
   padding: 30px;
}


.form-container input {
    height: 30px; 
    width: 100%;
    box-sizing: border-box;
    margin: 8px 0;
}

.form-container textarea {
    width: 100%;
    resize: none;
    height: 150px;
    box-sizing: border-box;
}

.form-container button {
    margin: 8px 0;
    border-radius: 10%;
}

.form-container button {
    background-color: lightblue;
    border: 0;
    padding: 10px;
}