﻿body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #0d2441;
    text-align: left;
    background-color: #ffffff;
}

::placeholder {
    color: #999999;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #999999;
}

::-ms-input-placeholder {
    color: #999999;
}

a {
    color: #0c2340;
}

    a:hover,
    a:focus {
        color: #0c2340;
        text-decoration: underline;
    }

.btn {
    text-transform: uppercase;
    font-size: 0.9em;
    font-weight: bold;
}

.btn-primary {
    color: #ffffff;
    background-color: #ff4338;
    border-color: #ff4338;
}

    .btn-primary:hover {
        color: #ffffff;
        background-color: #ff1f12;
        border-color: #ff1305;
    }

    .btn-primary:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 95, 86, 0.5);
    }

.form-group label {
    color: #0c2340;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-size: 0.9em;
    font-weight: bold;
    line-height: 1;
}

.form-control {
    background: #fff;
    border-radius: 4px;
    height: 34px;
    border: 1px solid #bbbbbb;
    font-size: 0.9em;
}

    .form-control:focus {
        border-color: #ff4338;
        box-shadow: none;
    }

.wrapper {
    font-size: 16px;
}

    .wrapper .form-group {
        margin-bottom: 40px;
    }

.login-wrapper {
    min-height: 100vh;
}

.form-wrapper-heading {
    background-color: #0c2340;
    background-image: url(images/ic_login_web.png);
    background-size: cover;
    background-position: right bottom;
    color: #fff;
    background-repeat: no-repeat;
    display: flex;
    height: 100%;
    justify-content: center;
    min-height: 100vh;
    flex-direction: column;
    position: relative;
}

.logo-wrapper {
    position: absolute;
    left: 0;
    width: 100%;
    top: 0;
}

.form-wrapper-heading h1 {
    font-family: "Volte-Semibold";
    font-size: 5em;
}

    .form-wrapper-heading h1 span {
        font-size: 0.54em;
    }

.form-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 70px 10.5% 30px;
}

.top-link {
    margin-bottom: 0;
    margin-top: 20px;
    font-weight: 700;
}

.login-form form {
    max-width: 415px;
}

.login-form h2 {
    font-size: 1.5em;
    line-height: 1.4;
    margin-bottom: 50px;
    margin-top: 0;
}

    .login-form h2 span {
        font-family: "Volte-Semibold";
        font-size: 1.6em;
    }

        .login-form h2 span.heading-small {
            font-size: 1.65em;
        }

.login-form .btn {
    width: 120px;
}

    .login-form .btn.sso {
        width: 150px;
    }

.login-form a {
    font-size: 0.9em;
}

.form-links p {
    margin-bottom: 13px;
    margin-top: -8px;
}

.form-footer p {
    font-size: 1.25em;
    font-family: "Volte-Medium";
    color: #1a2540;
}

    .form-footer p span {
        color: #ff4338;
    }

.form-footer {
    position: fixed;
    right: 0;
    width: 100%;
    padding-right: 38px;
    padding-bottom: 30px;
    bottom: 0;
}

    .form-footer.absolute {
        position: absolute !important;
    }

.register-page .register-heading {
    font-weight: bold;
}

.register-page .form-group {
    margin-bottom: 20px;
}

.register-page .register-help {
    font-weight: bold;
}

.email-sent .heading {
    font-weight: bold;
}

.email-sent .help {
    font-weight: bold;
}

.email-sent .contact-us {
    color: #ff4338;
    font-weight: bold;
}

.email-sent .form-content {
    padding-top: 10px;
}

.password-text {
    font-size: 12px;
    padding-left: 5px;
    color: #666;
}

@media (max-width: 991px) {
    .form-content {
        min-height: 100vh;
        background-color: #0c2340;
        background-image: url(images/ic_login_mobile.png);
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        max-width: inherit;
        color: #fff;
    }

    .form-content {
        padding: 100px 25px 30px;
    }

    .login-form form {
        margin: 0 auto;
    }

    .form-group label,
    .login-form a {
        color: #fff;
    }

    .form-footer p {
        color: #f1f1f1;
    }

    .login-form .btn {
        width: 100%;
        display: block;
        margin-top: 10px;
        margin-bottom: 30px;
    }

        .login-form .btn.sso {
            width: 100%;
        }

    .form-links {
        justify-content: space-between;
        flex-direction: row;
        display: flex;
    }

    .form-wrapper-heading h1 {
        font-size: 4.8em;
    }

    .form-footer {
        display: none;
    }

    .password-text {
        color: #ccc;
    }
}

@media (max-width: 768px) {
    .logo-wrapper img {
        width: 55px;
    }

    .login-form h2 {
        font-size: 1em;
        margin-bottom: 15px;
    }

    .wrapper .form-group {
        margin-bottom: 20px;
    }

    .top-link {
        margin-top: 10px;
        font-weight: 400;
    }

    .form-links.form-links-center {
        justify-content: center;
    }
}

.field-validation-error {
    padding: 5px 0 10px 0;
    color: #ff0000;
    font-size: 0.9em;
}

    .field-validation-error a {
        color: #ff0000;
        text-decoration: underline;
    }
