﻿.login .panel-viewer {
    position: relative;
    left: 13px;
    top: 0px;
    width: calc(100% - 26px);
    /*overflow: hidden; NOTE! We are now dynamically hiding overflow in JS depending if we're inside a modal dialog. Please see customizeForModalDialogUsage() in formsauthentication.aspx.*/
    outline: unset;
}

.login .panel-container {
    position: relative;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: 100%;
}

.login .header {
    width: calc(100% + 0px);
    height: 100px;
    background-image: linear-gradient(#428dbb 0%, #1A6694 50%, #0f5a87 100%); /* IE backward compatibility */
    background-image: linear-gradient(var(--sherpa-login-background-color1) 0%, var(--sherpa-login-background-color2) 50%, var(--sherpa-login-background-color3) 100%);
    border-bottom: 3px solid; /* IE backward compatibility */
    border-bottom: var(--sherpa-login-border-bottom);
    border-image-slice: 1;
    border-image-source: linear-gradient(to right, #78C6E0, #009CC6, #78C6E0); /* IE backward compatibility */
    border-image-source: var(--sherpa-banner-border-image-source);
}

.login .logo {
    margin: auto;
    position: relative;
    top: 10%;
    width: 150px;
    height: 80%;
    /*background-color:#ffffff;*/
    background-image: var(--sherpa-login-logo);
    background-size: contain; /*Behaves like <img/>*/
    background-repeat: no-repeat;
    background-position: center;
    border: 0px solid #dddddd;
    box-shadow: 0px 0px 0px #ffffff;
}

.login .fld {
    font-family: var(--sherpa-font-family);
}

.login .ctr {
    width: 100%;
    height: 30px;
    line-height: 25.5px;
}

.login .lbl {
    margin-top: 2px;
    font-weight: 600;
    font-size: 14px;
    color: #50575C;
    text-shadow: 0px 0px 100px #50575C;
}
/* Original. 
.login .disclaimer {
    font-size: 12px;
    line-height: 20px;
    height: 155px;
    overflow-x: auto;
    overflow-y: auto;
}
*/
/* Square! x/y = 1.0 */
.login .disclaimer {
    font-size: 13px;
    line-height: 21px;
    height: 190px;
    overflow-x: auto;
    overflow-y: auto;
}
/* Long. x/y = 0.9
.login .disclaimer {
    font-size: 13px;
    line-height: 21px;
    height: 228px;
    overflow-x: auto;
    overflow-y: auto;
}
*/

.login .disclaimer input[type=checkbox] {
    border:1px solid red;
    margin-right:10px;
}

.login .stat {
    display: inline;
    position: relative;
    top: 5px;
    border: 2px solid;
    border-radius: 1000px;
    float: right;
    padding: 2px;
    margin-left: 20px;
    width: 10px;
    height: 10px;
    font-size: 10px;
    line-height: 10px;
    text-align: center;
}

.login .stat-msg {
    display: inline-block;
    padding-left:5px;
    color: var(--sherpa-red1);
    font-size: 10px;
}

.login .success {
    border: 2px solid var(--sherpa-greenA1);
    color: var(--sherpa-greenA1);
}

.login .failure {
    border: 2px solid var(--sherpa-red1);
    color: var(--sherpa-red1);
}

.login .msg {
    margin-top: 10px;
    margin-bottom: 5px;
    font-family: "Open Sans", Arial; /* IE backward compatibility */
    font-family: var(--sherpa-font-family);
    font-size: 16px;
}

.login .msg-err {
    color: #ee7777;
    animation-name: fadeIn;
    animation-duration: 1.0s;
}

.login .tb {
    border-radius: 4px;
    border: 1px solid #cccccc;
    width: calc(100% - 25px);
    box-shadow: 0px 0px 5px #cccccc;
    color: #4888be;
    text-shadow: 0px 0px 1px #aaaaaa;
    padding-left: 10px;
    padding-right: 10px;
    outline: inherit;
}

.login input:focus {
    border: 1px solid #cccccc;
    box-shadow: 0px 0px var(--sherpa-focus-blur-radius) var(--sherpa-focus-border-color);
    outline: var(--sherpa-focus-outline);
}

.login .lnk {
    display:inline;
    /*margin-top: 5px;*/
    border:0px;
    color: #4888be;
    cursor: pointer;
    font-size: 14px;
}

.login .back {
    float: right;
    margin-top: 3px;
    background-image: var(--sherpa-action-area-back-icon);
    background-position: 0px center;
    background-repeat: no-repeat;
    padding-left: 20px;
}

.login .action {
    display: inline;
}

.login .btn {
    width: calc(100% - 0px);
    height: 40px;
    border-radius: 4px;
    border: 1px solid var(--sherpa-login-button-border-color);
    background-color: #009CC6; /* IE backward compatibility */
    background-color: var(--sherpa-login-button-background-color);
    color: var(--sherpa-login-button-font-color);
    font-size: 14px;
    font-weight: bold;
    font-family: "Open Sans", Arial; /* IE backward compatibility */
    font-family: var(--sherpa-font-family);
    cursor: pointer;
    /*background-image: var(--sherpa-button-logo);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain; /*Behaves like <img/>*/
}

    .login .btn .disabled {
    }

@keyframes swipeIntoView {
    0% {
        opacity: 1.0;
        left: 2px;
    }

    20% {
        opacity: 0.5;
        left: 2px;
    }

    45% {
        opacity: 0.0;
        left: -52px;
    }

    55% {
        opacity: 0.0;
        left: 52px;
    }

    80% {
        opacity: 0.5;
        left: 2px;
    }

    100% {
        opacity: 1.0;
        left: 2px;
    }
}

.swipe-into-view {
    animation-name: swipeIntoView;
    animation-delay: 0.0s;
    animation-duration: 0.6s;
}

@keyframes fadeIn {
    0% {
        opacity: 0.0;
    }

    100% {
        opacity: 1.0;
    }
}

.fade-in {
    animation-name: fadeIn;
    animation-duration: 1.0s;
}
