/* form buttons should be standardized */
button {
    background: var(--dark);
    border: 1px solid var(--dark);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.5em;
    padding: 6px 12px;
}
button:hover {
    background: var(--medium);
}
button span.font-awesome {
    margin: 0;
}





/* form text inputs should be standardized */
input[type=password],
input[type=text],
select,
textarea {
    background-color: #fff;
    border: 1px solid #ccc;
    color: #555;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    padding: 6px 12px;
}





/* textarea fields should have a standard size */
textarea {
    height: 10em;
    width: 90%;
}





/* hide certain fields on public-facing forms */
.formname-input,
.username-input {
    display: none;
}
