*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*, *::before, *::after {
    border-width: 0;
    border-style: solid;
}

body {
    background-color: #F79234;
    color: #1a202c;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    font-family: sans-serif !important;
    margin: 0;
}

.page {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
}

h1 span {
    color: #a0aec0;
    display: block;
    font-size: 0.875rem;
    margin-top: .5rem;
}

h1 a {
    color: white;
}

h1 img {
    vertical-align: bottom;
}

a {
    color: #115588;
    font-weight: 400;
    text-decoration: none;
    transition: color .5s ease, border-color .5s ease, background-color .5s ease;
}

a:focus, a:active {
    outline: none;
}

img {
    border-style: none;
    display: inline-block;
    max-width: 100%;
    height: auto;
}

img, svg {
    vertical-align: middle;
}

svg {
    fill: currentColor;
    display: inline-block;
    vertical-align: middle;
    width: 1em;
    height: 1em;
}

.container {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 32rem;
}

.inner {
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    background: rgba(255, 255, 255, .9);
}

.header {
    background-color: #000;
    color: white;
    border-radius: .5rem .5rem 0 0;
    margin-bottom: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

form {
    padding: 0 2rem 2rem;
}

.row {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin: 0 -.5rem;
}

.w-1-1 {
    width: 100%;
    padding-left: .5rem;
    padding-right: .5rem;
}

.w-1-2 {
    width: 50%;
    padding-left: .5rem;
    padding-right: .5rem;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: .5rem;
    text-align: left;
}

[for=remember] {
    font-weight: normal;
}

[type=text], [type=password] {
    border: 1px solid #cbd5e0;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
    font-size: 1rem;
    padding: .75rem .5rem;
    margin-bottom: .5rem;
    width: 100%;
}

[for=remember] {
    margin-bottom: 1rem;
}

.button {
    background-color: #115588;
    border-radius: 0.25rem;
    color: #fff;
    display: inline-block;
    font-size: 1.125rem;
    text-transform: uppercase;
    text-align: center;
    padding: .5rem 1rem;
    min-width: 9.375rem;
    margin-top: 4px;
}

.buttonDisabled {
    background-color: #808080;
    pointer-events: none;
}

.button:hover, .button:focus {
    background-color: #b95a03;
    cursor: pointer;
}

.button.secondary {
    font-size: 1rem;
}

.alt-login {
    margin-top: 1rem;
}

.alt-login>div {
    margin-bottom: .5rem;
}

.edtErrorMessage {
    color: red;
    font-weight: bold;
    margin-top: 1rem;
    width: 300px;
    margin: 0 auto;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.instructions {
    text-align: left;
    padding-left: 20px;
}