html {
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

html, body {
    height: 100%;
}

body {
    font-family: Lato, sans-serif, sans-serif;
    font-size: 13px;
    background: white;
}

body {
    background: url('') no-repeat fixed center center;
    background-size: cover;
    font-family: Montserrat;
}

.login-block {
    width: 320px;
    padding: 20px;
    background: #fff;
    margin: 0 auto;
}

.login-block h1 {
    text-align: center;
    color: #000;
    font-size: 18px;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 20px;
}

.login-block input {
    width: 100%;
    height: 42px;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #ccc;
    margin-bottom: 20px;
    font-size: 14px;
    font-family: Montserrat;
    padding: 0 20px 0 50px;
    outline: none;
}

.login-block input#login {
    background: #fff url('https://assets.clearpathgps.com/LoginUserIcon.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#login:focus {
    background: #fff url('https://assets.clearpathgps.com/LoginUserIcon.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input#password {
    background: #fff url('https://assets.clearpathgps.com/LoginPasswordIcon.png') 20px top no-repeat;
    background-size: 16px 80px;
}

.login-block input#password:focus {
    background: #fff url('https://assets.clearpathgps.com/LoginPasswordIcon.png') 20px bottom no-repeat;
    background-size: 16px 80px;
}

.login-block input:active, .login-block input:focus {
    border: 1px solid #0E4E80;
}

.login-block button {
    width: 100%;
    height: 40px;
    background: #1066b1;
    box-sizing: border-box;
    border-radius: 5px;
    border: 1px solid #1066b1;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 14px;
    font-family: Montserrat;
    outline: none;
    cursor: pointer;
}

.login-block button:hover {
    background: #2ca8e0;
}

.left-pane {
    height: 100%;
    position: relative;
    text-align: center;
    background-color: #ffffff;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 920px) {
    .left-pane {
        padding: 0 60px;
    }
}

.form {
    width: 275px;
}
.form__logo {
    width: 200px;
}
.form.email-present .sessions__clear {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}
.form__field {
    position: relative;
    font-size: 12px;
    width: 100%;
    text-align: left;
    display: block;
    margin: 0 0 10px 0;
    box-sizing: border-box;
}
.form__field--email.status-active:after {
    position: absolute;
    top: 50%;
    right: -30px;
    margin: -3px 0 0 0;
    font-family: FontAwesome;
    font-weight: normal;
    font-style: normal;
    text-decoration: none;
    font-size: 24px;
}
.form__field--email.loading:after {
    content: "\f110";
    animation: fa-spin 1s infinite steps(8);
    color: #343739;
}
.form__field--email.sso-enabled:after {
    content: url(/assets/sessions/success_checkmark.svg);
    width: 24px;
    height: 24px;
}
.form__field--toggle {
    cursor: pointer;
}
.form__field--toggle input {
    cursor: pointer;
}
.form__button {
    margin: 30px 0;
}

a img {
    width: 200px;
}