.contact-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    row-gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px;
}
#name-fields {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.contact-name-field {
    display: flex;
    width: 48%;
    flex-direction: column;
}
label {
    color: black;
    text-align: center;
}
input, textarea {
    border: 1px solid black;
    border-radius: 5px;
    background-color: white;;
}
textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-line-input {
    font-size: 12pt;
    height: 20px;
}
#message {
    font-size: 12pt;
    height: 80px;
}
#submitButton {
    color: white;
    font-size: 12pt;
    height: 48px;
    background-image: linear-gradient(rgb(0, 100, 200), var(--bg-blue));
    border-radius: 5px;
}
#email-confirmation {
    text-align: center;
    display: none;
}