.form {
    background-color: ghostwhite;
    padding: 20px 5px 15px;
    border: solid 5px #65728c;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    vertical-align: center;
}

.form .submit-button-container .submit-button {
    background-color: #0cc;
    border: none;
    color: #ffffff;
}

.form .submit-button-container .submit-button:hover {
    background-color: #00e6e6;
}

.form .submit-button-container {
    display: flex;
    justify-content: center;
}

.form > .mid {
    margin: auto;
}

.form input {
    width: 100%;
}

.hidden {
    display: none;
}

.thank-you {
    font-size: xx-large;
    background-color: ghostwhite;
    padding: 20px 5px 15px;
    border: solid 5px #65728c;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
}

.thank-you > span {
    margin: auto;
}