html, body, input, textarea, select, button {
    font-family: "OTsans", "Helvetica Neue", "HelveticaNeue", "Helvetica", "Arial", "Tahoma", sans-serif;
}

html, body {
    height: 100%;
}

body {
    margin: 0;
    background: linear-gradient(
            61deg,
            #090e2c 0%,
            #122c69 59%,
            #078db3 100%
    );
    display: flex;
    align-items: center;
    flex-direction: column;
}

.login-form {
    flex: 1 1 auto;
    width: 25rem;
    text-align: center;
}

.logo {
    height: 2.75rem;
    min-height: 28px;
    width: 100%;
}

input {
    display: block;
    width: 100%;
    height: 3rem;
    color: #333333;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-bottom: 1rem;
    box-sizing: border-box;
    font-size: 1.5rem;
    padding: 0 1rem;
}

input.empty {
    background-color: rgba(255, 255, 255, 0.9);
    color: #666666;
}

input:focus {
    border: 1px solid #333333;
    outline: none;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 3px 3px white;
}

input::-ms-clear, input::-ms-reveal {
    display: none;
}

.inputwrapper {
    position: relative;
}

.clearbutton {
    position: absolute;
    top: 0;
    right: 0;
    width: 3rem;
    height: 3rem;
    background-image: url(../Icons/formfield_clear.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 24px 24px;
    background-color: transparent;
}

.clearbutton:hover {
    background-image: url(../Icons/formfield_clear_mo.svg);
}

.clearbutton:active {
    background-image: url(../Icons/formfield_clear_md.svg);
}

button {
    margin-top: 1rem;
    height: 3rem;
    border-width: 1px;
    border-style: solid;
    border-radius: 1.5rem;
    font-size: 1.125rem;
    padding: 0 2.25rem;
}

button:focus {
    outline: none;
}

button:disabled {
    background-color: transparent;
    border-color: #5864ad;
    color: #5864ad;
}

button:enabled {
    background-color: white;
    border-color: white;
    color: #232e72;
}

button:hover:enabled {
    background-color: #232e72;
    border-color: white;
    color: white;
}

button:active:enabled {
    background-color: #171f4c;
    border-width: 2px;
    border-color: white;
    color: white;
}

.footer {
    flex: 0 0 auto;
    padding-top: 3.125rem;
    height: 3.125rem;
    font-size: 0.75em;
    color: white;
    opacity: 0.7;
    text-align: center;
}

.logo-spacer-top {
    height: 30vh;
    max-height: 11rem;
    min-height: 1rem;
}

.logo-spacer-bottom {
    height: 10vh;
    max-height: 3.5rem;
    min-height: 1rem;
}

.message {
    display: flex;
    align-items: center;
    width: 25rem;
    height: 0; /* IE11: align-items: center with min-height workaround */
    min-height: 5rem;
    font-size: 1.25rem;
    color: white;
    box-sizing: border-box;
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.1);
}

.message div {
    margin-left: 1rem;
}
.message img {
    width: 1.125rem;
    height: 1.125rem;
}