/*   forms   */
fieldset {
    border: 1px solid black;
}
.form-title {
    font-size: 1.75em;
    font-weight: bold;
}

.form-text {
    /* unused */    
}

.formrow {
    float:left;
    width: 100%;
    clear:both;
    overflow:hidden;
    margin-bottom: 2em;
}
.formrow:last-child {
    margin-bottom: 0px;
}

label {
    color: black;
    float:left;
    width: auto;
    font-size: 1.1em;
}
input[type="text"], input[type="password"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="email"], input[type="number"], input[type="search"], input[type="tel"], input[type="time"], input[type="url"], input[type="color"], textarea {
    border-style: none;
    border-width: 0px;
    box-shadow: 0 0px 0px rgba(0, 0, 0, 0) inset;
    box-sizing: border-box;
    transition: box-shadow 0s ease 0s, border-color 0s ease-in-out 0s;
    border-color: white;
    border-bottom: 1px solid black;
    width: 85%;
    border: 1px solid black;
    background-color: white;
    color: black;
    font-size: inherit;
    float:right;
}
.errorfield {
    clear:both;
    overflow: hidden;
    width: 100%;
    color: red;
}

input[type="file"], input[type="checkbox"], input[type="radio"], select {
    margin: 0.35rem;
    float:left;
}
input[type="checkbox"], input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}



button, .button {
    background-color: #fff;
    border-color: #000;
    border-style: solid;
    border-width: 1px;
    color: black;
    cursor: pointer;
    display: inline-block;
    font-family: inherit;
    font-size: inherit;
    font-weight: normal;
    line-height: normal;
    margin: 0 0 1.25rem;
    padding: 1rem 2rem 1.0625rem;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: background-color 300ms ease-out 0s;
}


button:hover, button:focus, .button:hover, .button:focus {
    background-color: black;
    color: white;
}