.fh-loginbox {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fh-form {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.fh-buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.fh-username,
.fh-password {
    font-size: 18px;
    padding: 0.76rem 0.5rem;
    border: 1px solid #174376;
    margin-bottom: 15px;
}

.fh-username:focus,
.fh-password:focus {
    border: 1px solid #8ba1ba;
}

.fh-buttons input {
    padding: 0.76rem 1rem;
    flex-basis: calc(50% - 30px);
    flex-grow: 1;
    margin: 0 15px 15px 15px;
    min-width: 200px;
}

.fh-buttons input[type="submit"],
.fh-buttons input[type="button"],
.fh-buttons input[type=reset],
.fh-buttons button,
.fh-buttons .button {
    background-color: #174376;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
}

.fh-buttons input:hover,
.fh-buttons input[type="submit"]:hover,
.fh-buttons input[type="button"]:hover,
.fh-buttons input[type=reset]:hover {
    background-color: #8ba1ba;
}

.fh-buttons input:focus,
.fh-buttons input[type="submit"]:focus,
.fh-buttons input[type="button"]:focus,
.fh-buttons input[type=reset]:focus {
    background-color: #8ba1ba;
}

.fh-loginbox-footer {
    display: none;
    color: #989898;
    text-transform: uppercase;
    font-size: 10px;
    text-align: right;
    font-weight: 600;
}

.fh-loginbox-footer a {
    color: #989898;
    text-decoration: none;
}