#content {
    font-family: 'Georgia', 'Times', serif;
}
#content h2 {
    font-size: 26px;
    font-weight: bold;
    font-style: italic;
    text-align: center;
    color: #8c5f38;
}
.reminder {
    border: 3px double #f1ca7f;
    border-radius: 10px;
    margin: 3px;
    padding: 10px;
    background: #fbfbfb;
    overflow: hidden;
}
.reminder form {
    width: 460px;
    margin: 0 auto;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    border-radius: 4px;
    border: 3px #f1ca7f double;
    background: #fdffe2;
}
.reminder input {
    width: 100%;
    font-size: 16px;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.reminder label,
.reminder p {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}
.reminder p {
    margin-bottom: 10px;
}
.reminder .formButton {
    width: 150px;
    font-size: 11px;
    color: white;
    border: 2px solid #ccc;
    border-radius: 6px;
    text-align: center;
    text-decoration: none;
    display: block;
    margin-left: auto;
    margin-bottom: 0px;
    padding: 0px;
    cursor: pointer;
}
.g-recaptcha {
    margin-bottom: 20px;
    margin-top: 10px;
}
.errorDescription {
    border: solid 1px #c57f00;
    background-color: #fefeea;
    border-radius: 6px;
    padding: 12px;
    text-align: center;
    margin: 0px 50px;
}
