﻿html,
body {
    height: 100%;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -o-user-select: none;
    cursor: default;
    color: #777777;
}

#loginPage {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
    font-size: 1.2rem;
}

#SuccessMessage {
    padding: 20px;
    text-align: center;
    background-color: #FFFFFF;
    border-bottom: 1px solid #BBBBBB;
    display: none;
    color: #008000;
}

#loginPageAuthentication {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    min-width: 500px;
    padding: 10px;
    background-color: #FFFFFF;
}

    #loginPageAuthentication #authenticationArea form > div,
    #loginPageAuthentication #authenticationArea > div {
        margin: 10px;
    }

#loginPageProductLogo {
    background-image: url("/Content/themes/default/images/logo.png");
    background-size: 220px 36px;
    width: 220px;
    height: 36px;
}

#loginPageAuthenticationUsername span,
#loginPageAuthenticationPassword span,
#loginPageAuthenticationPinCode span,
#changePasswordPagePassword span,
#changePasswordPageConfirmPassword span {
    text-align: right;
    margin-right: 10px;
}

#showPassword,
#showConfirmPassword {
    border-top-right-radius: 0.375rem !important;
    border-bottom-right-radius: 0.375rem !important;
}

#changePasswordPagePassword span:first-child i {
    cursor: pointer;
}

#loginPageAuthenticationSubmit,
#changePasswordPageChangePasswordSubmit,
div#loginPageAuthenticationUsedOnOtherBrowserActions {
    text-align: right;
}

#loginPageAuthenticationSubmit,
#configure2FaSubmit,
#changePasswordPageChangePasswordSubmit,
div#loginPageAuthenticationUsedOnOtherBrowserActions {
    color: #4297d7;
    font-size: 1.15em;
}

    #configure2FaSubmit div,
    #loginPageAuthenticationSubmit div,
    #changePasswordPageChangePasswordSubmit div {
        cursor: pointer;
    }

        #configure2FaSubmit div:hover span:not(.fa),
        #loginPageAuthenticationSubmit div:hover span:not(.fa),
        #changePasswordPageChangePasswordSubmit div:hover span:not(.fa) {
            text-decoration: underline;
        }


#waitingArea {
    display: none;
    text-align: center;
    margin: 55px;
}

    #waitingArea span {
        margin: 5px;
    }

div#errorMessage span {
    padding: 5px 0 5px 0;
    display: inline-block;
}

div#errorMessage > div.details > i:not(:first-child) {
    padding-left: 50px;
}

div#errorMessage > div.details > a {
    display: inline-block;
    padding: 5px 0 5px 0;
    color: #FF6961;
}

div#loginPageAuthenticationUsedOnOtherBrowserActions {
    margin: 30px auto 20px !important;
    padding: 5px 45px;
}

    div#loginPageAuthenticationUsedOnOtherBrowserActions > div#loginPageAuthenticationBack {
        float: left;
        cursor: pointer;
    }

    div#loginPageAuthenticationUsedOnOtherBrowserActions > div#loginPageAuthenticationKick {
        float: right;
        cursor: pointer;
    }
