form {
    display: flex;
    flex-direction: column;
    border: 2px solid #2877a9;
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    box-shadow: #949494 0px 0px 10px;
}
input, select, textarea {
    margin: 5px 0;
    padding: 0.5em;
    font-size: 1em;
    line-height: 1.5em;
    border: 0;
    border-bottom: 1px solid #2877a9;
    margin-bottom: 20px;
}
textarea {
    resize: vertical;
    min-height: 100px;
    font-size: 1.5em;
}

button {
    background-color: #2877a9;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}