/* Consistent, readable typography for values entered across website forms. */
main input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="color"]):not([type="file"]):not([type="hidden"]):not([type="submit"]):not([type="button"]):not([type="reset"]),
main textarea,
main select {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: normal;
    text-transform: none;
}

main input::placeholder,
main textarea::placeholder {
    font: inherit;
    font-weight: 400;
    opacity: .72;
}

main select option {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 400;
}

.cms-form textarea.content {
    min-height: 360px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.65;
    letter-spacing: normal;
    text-transform: none;
    resize: vertical;
}

.cms-form input,
.cms-form textarea,
.cms-form select {
    color: #18313f;
}

@media (max-width: 700px) {
    .cms-form textarea.content {
        min-height: 260px;
    }
}
