﻿#login-background {
    padding: 20px;
    -ms-background-position: center;
    background-position: center;
    -ms-background-size: cover;
    background-size: cover;
}

    #login-background span {
        height: calc(100vh - 40px);
        width: 100%;
        display: inline-block;
        -ms-background-repeat: no-repeat;
        background-repeat: no-repeat;
        -ms-background-size: contain;
        background-size: contain;
        -ms-background-position: center;
        background-position: center;
    }

.background-wrapper {
    text-align: center;
    height: calc(100vh - 40px);
    display: table;
    padding: 0;
}

    .background-wrapper > div {
        display: table-cell;
        vertical-align: middle;
    }

        .background-wrapper > div img:nth-child(1) {
            max-width: 40%;
        }

        .background-wrapper > div img:nth-child(2) {
            width: 100%;
            margin-top: 100px
        }

.login-main-background {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}

.overlay {
    position: absolute !important;
    opacity: 0.7
}

#login {
    background: #FFFFFF;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

    #login .is-logo-wrapper {
        height: 200px;
    }

        #login .is-logo-wrapper img {
            width: 80%;
            margin: 50px 0 0 40px;
        }

    #login .main-content {
        padding: 40px 20px 0 20px;
        -webkit-flex: 1;
        -ms-flex: 1;
        -o-flex: 1;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

.main-content .client-logo-wrapper {
    width: 100%;
    -webkit-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    display: table-cell;
}

    .main-content .client-logo-wrapper div {
        white-space: nowrap;
        height: 100%;
    }

        .main-content .client-logo-wrapper div span {
            margin: initial !important;
            display: inline-block;
            height: 100%;
            vertical-align: middle;
        }

        .main-content .client-logo-wrapper div img {
            max-width: 100%;
            max-height: 100%;
            margin-left: -4px;
        }

.main-content .form label {
    color: #777777;
    display: block;
    margin-bottom: 0;
}

.main-content .form input {
    width: 100%;
    background: #EFEFEF;
    border: 1px solid #FFA500;
    height: 30px;
}

    .main-content .form input:focus {
        border-color: #FF6A00;
        outline: none;
    }

.main-content .footer {
    text-align: center;
    -webkit-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .main-content .footer .copyright-span {
        margin-top: 20px;
        margin-bottom: 35px;
    }

#login-button {
    border: 1px solid #FF5400 !important;
    border-bottom-right-radius: 6px;
    border-bottom-left-radius: 6px;
    border-top-right-radius: 6px;
    cursor: pointer;
    float: right;
    font-family: Calibri, Helvetica, Arial, Sans-Serif;
    font-size: 9pt !important;
    margin: 1px;
    padding: 0.4em 0.8em;
    text-align: center;
    width: 65px;
}

    #login-button:hover {
        background: #BEBEBE !important;
        border: 1px solid #FF5400 !important;
        color: #000 !important;
    }


.validation-summary-errors {
    color: Red;
    padding: 4px 0 30px 0;
}

    .validation-summary-errors span {
        display: block;
        font-size: 12px;
        margin: 0 0 5px;
        padding: 0;
    }

    .validation-summary-errors ul {
        font-size: 12px;
        margin: 0 0 0 18px;
        padding: 0;
    }

.field-validation-error {
    color: Red !important;
}
