/* dark green: #7d8b37 */
/* light green: #ccd986 */
/* background grey: #dfdfdf */
.content input[type=text],
textarea {
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
    border: 2px solid #ccc;
    border-radius: 4px;
    margin-top: 6px;
    margin-bottom: 16px;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    outline: none;
    font-size: 16px;
    resize: vertical;
}

.content input[type=text]:focus,
textarea:focus {
    border-color: var(--dark-color);
}

.content input[type=submit] {
    font-size: 13px;
    width: 95px;
    height: 32px;
    margin-top: 25px;
}

/* When moving the mouse over the submit button, add a darker green color */
.content input[type=submit]:hover {
}

#captcha_code {
    width: 25%;
    margin-bottom: 5px;
}

#status_msg {
    color: red;
    font-style: normal;
    font-weight: bold;
    font-size: 110%;
    margin-top: 25px;
}
