body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    background-color: #f4f4f4;
}
.form-container {
    width: 800px;
    margin: 30px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
}
h2 {
    color: #0073e6;
    border-bottom: 2px solid rgb(233, 232, 232);
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.5em;
}
label {
    margin-bottom: 5px;
    font-weight: bold;
}
input[type="text"], input[type="email"], input[type="number"] {
    width: 777px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid lightgray;
    border-radius: 4px;
}
textarea {
    width: 777px;
    height: 100px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid lightgray;
    border-radius: 4px;
}
input[type="submit"] {
    background-color: #0073e6;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
}
input[type="submit"]:hover {
    background-color: #005bb5;
}