body {
    background-color: #a9e7f5;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    align-item: center;

}

.form-container {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    width: 80%;
}

label {
    color: #545454;
    margin: 30px;
}

input, textarea {
    width: 90%;
    padding: 10px;
    margin-bottom: 10px;
}

button {
    background-color: #4caf50;
    color: white;
    font-size: 1em;
}

button:hover {
    background-color: green;
}