﻿body{
    overflow-x: hidden;
}

.outer-layout {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100vw;
    height: 100vh;
}

    .outer-layout:after {
        content: "";
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: url("/images/squares-logo-bkgrnd.jpg");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: .2;
        z-index: -1;
    }

    .outer-layout .inner {
        background-color: var(--color-bg-teal);
        width: 320px;
        max-width: 320px;
        height: auto;
        padding: 20px;
        border-radius: 6px;
    }

    .outer-layout .offset-login {
        position: relative;
        height: 100vh;
        padding: 12% 20% 7% 20%;
        background-color: var(--color-bg-teal);
        box-shadow: 3px 3px 10px #333;
        min-height: 560px;
    }

    .outer-layout header h1 {
        padding-top: 5px;
    }
    .outer-layout header, section.login-tile header {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        padding-bottom: 20px;
    }

        .outer-layout header img {
            width: 220px;
        }

        .outer-layout header h1 {
            height: 25px;
            line-height: 25px;
            font-size: 20px;
            font-weight: bold;
            color: #9b9b9b;
        }

    .outer-layout label {
        color: #9b9b9b;
    }

    
        .outer-layout button:hover {
            transform: scale(1.02);
            outline: 2px var(--color-bg-teal);
        }

    .outer-layout footer {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 40px;
        padding-bottom: 20px;
    }

    .outer-layout p {
        color: var(--color-font-white);
    }

#login-submit {
    width: 200px;
    height: 40px;
    background-color: var(--color-bg-lime-tent04);
    border-color: var(--color-bg-lime-tent04);
    color: var(--color-font-primary);
    border-radius: 20px;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1.8px;
}
#login-submit span {
    color: var(--color-font-primary);
}

#forgot-password-link.link, #register-link.link {
    color: var(--color-bg-lime-tent04);
}

.validation-summary-errors ul {
    padding: 0;
}
.validation-summary-errors li{
    list-style: none;
}


.flex-between {
    display: flex;
    justify-content: space-between;
}
.flex-center{
    display: flex;
    justify-content: center;
}









#login section.prosign-description {
    height: 100vh;
    height: auto;
    background-color: var(--color-bg-white);
    padding: 20px 8% 0 8%;
}

#login label {
    color: var(--color-font-white);
    letter-spacing: 1.3px;
}

#login .login-desc-steps {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
}

#login section.login-tile {
    height: 100vh;
    padding: 0;
    background-color: var(--color-bg-white);
}

#login h1.whats-prosign {
    width: 100%;
    margin-top: -10px;
    color: var(--color-font-primary);
    font-size: 30px;
    padding-bottom: 15px;
}

#login h2 {
    width: 100%;
    color: #747272;
    font-size: 15px;
    line-height: 20px;
    font-weight: 500;
}

#login h5 {
    width: 100%;
    color: var(--color-font-primary);
    text-align: center;
    font-size: 24px;
}

#login h6 {
    width: 100%;
    color: #747272;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}

#login div.desc-step {
    width: 240px;
    height: 305px;
    max-height: 305px;
    min-height: 305px;
    margin-top: 20px;
    padding: 25px 10px 25px 10px;
    box-shadow: 1px 1px 40px rgba(150,150,150,0.15), -1px -1px 40px rgba(150,150,150,0.15);
}

#login .step-image {
    display: block;
    margin: 0 auto 15px auto;
    padding: 0;
    background-position: center center;
}

    #login .step-image.step1 {
        width: 180px;
        height: 180px;
        background-image: url('/images/image-step-1.png');
        background-size: 180px 180px;
        background-repeat: no-repeat;
    }

    #login .step-image.step2 {
        width: 220px;
        height: 180px;
        background-image: url('/images/image-step-2.png');
        background-size: 220px 180px;
        background-repeat: no-repeat;
        margin-left: 0;
    }

    #login .step-image.step3 {
        margin-top: -10px;
        width: 200px;
        height: 200px;
        background-image: url('/images/image-step-3.png');
        background-size: 200px 180px;
        background-repeat: no-repeat;
        margin-bottom: 5px;
    }

#login h4 {
    width: 100%;
    text-align: left;
    text-transform: none;
    font-size: 22px;
    font-weight: 500;
    color: #9b9b9b;
}

#login footer#layout-footer {
    background-color: var(--color-bg-teal);
}

footer.forgot-register-container {
    padding-top: 20px;
}

#login img {
    width: 240px;
}

#login footer.app-footer h6 {
    color: #CCC !important;
    font-size: 13px !important;
    font-weight: 300 !important;
}


#login footer.app-footer {
    height: auto;
    max-height: initial;
    min-height: 60px;
    background-color: var(--color-bg-teal);
    margin-bottom: 0;
    color: #FFF;
    padding: 0 50px 0 50px;
    line-height: 60px;
}

@media only screen and (max-width : 700px) {
    #login footer.app-footer {
        display: block;
        justify-content: initial;
        padding-bottom: 20px;
    }
    .outer-layout .offset-login {
        height: 570px;
        box-shadow: none;
    }
    #login section.prosign-description {
        padding-left: 15px;
        text-align: center;
    }
    #login .login-desc-steps {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width : 768px) {
    #login header.logo-title {
        display: block;
        margin-left: 20%;
        margin-right: auto;
    }
}

@media only screen and (max-width : 550px) {
    #login header.logo-title {
        display: block;
        margin-left: 22%;
        margin-right: auto;
    }
}

@media only screen and (max-width : 400px) {
    #login header.logo-title {
        display: block;
        margin-left: 0;
        margin-right: 0;
    }
}

hr.per-space {
    background-color: transparent;
    border: none;
    padding-top: 0.5%;
}

/*TEMPORARY CLASSES UNTIL UPDATE FOR 19.1*/
div.wrapper.er-logReg-container {
    padding-top: 72px;
}

.form-control::-webkit-input-placeholder {
    color: #fff;
}

.form-control::-moz-placeholder {
    color: #fff;
}

.form-control:-ms-input-placeholder {
    color: #fff;
}

.form-control:-moz-placeholder {
    color: #fff;
}

.field-validation-error {
    /*white-space: nowrap;*/
    display: block;
    margin: 5px 0 0;
}

.validation-summary-errors.alert ul li {
    color: #E7E7E7;
}

.fa.fa-remove.close-alert {
    position: absolute;
    right: 5px;
    top: 5px;
}

.fa.fa-question {
    color: #364760;
}

.marginbot5 {
    margin-bottom: 5px !important;
}

.pass-info-popup.input-group-addon {
    background: transparent none repeat scroll 0 0;
    border: medium none;
    height: 20px;
    padding: 0;
    position: absolute;
    right: 21px;
    top: 8px;
    width: 20px;
    cursor: pointer;
}

.er-logo {
    position: relative; /* for z-index only so border doesn't overlap*/
    display: block;
    width: 200px;
    margin: 0 auto 0 auto; /* center block */
    /*Force image to overlap and allow overflow visible*/
    height: 16px; /*set for height - larger number pulls up*/
    line-height: 16px;
    overflow: visible;
    /**/
    font-size: 26px;
    text-align: center;
    z-index: 100;
}

    .er-logo img {
        display: block;
        width: 100%;
        height: 30px;
        margin: 0 auto 0 auto;
        padding: 0 15px 0 15px;
        background-color: #003856;
    }


.er-loginReg-mainblock {
    width: 328px;
    margin: 0 auto 12px;
    padding: 0;
    height: calc(100vh - 141px);
    min-height: 420px;
}

.er-loginReg-form {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 36px 20px 18px 60px;
    border: 1px solid rgba(236, 236, 236, 0.1);
    border-radius: 4px;
    height: auto;
}

    .er-loginReg-form .btn:focus:active {
        margin: 1px 2px;
        padding: 8px 12px;
        outline: none;
    }

.er-page-title {
    font-size: 18px;
    line-height: 36px;
    margin-bottom: 18px;
}

.er-loginReg-form .form-horizontal {
}

    .er-loginReg-form .form-horizontal .form-group {
        position: relative;
        margin-bottom: 19px;
    }

        .er-loginReg-form .form-horizontal .form-group.input-box {
            display: inline-block;
            vertical-align: middle;
            margin-top: 25px;
        }

        .er-loginReg-form .form-horizontal .form-group .control-label {
            position: absolute;
            left: 15px;
            top: 0;
            z-index: 5;
            color: #ECECEC;
            line-height: 30px;
            padding-top: 0
        }


.er-loginReg-form .control-label .fa {
    font-size: 16px;
}

#login div#contentContainer {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.forgot-register-container{
    padding: 10px 0;
}

    #forgot-password-link:hover, #register-link:hover {
        color: #ECECEC;
    }

.er-loginReg-form .control-label .fa.fa-envelope {
    font-size: 12px;
}

.er-loginReg-form .form-horizontal .form-group input.form-control {
    position: relative;
    width: 200px;
    max-width: 200px;
    min-width: 200px;
    border-color: rgba(236, 236, 236, 0.1) !important;
    background: #364760;
    border-radius: 4px !important;
    padding-left: 34px;
    font-size: 12px;
    color: #ECECEC;
}

    .er-loginReg-form .form-horizontal .form-group input.form-control:hover,
    .er-loginReg-form .form-horizontal .form-group input.form-control:focus {
        border-color: #ECECEC;
    }

.er-loginReg-form .form-horizontal .form-group .btn {
    margin: 0;
}

    .er-loginReg-form .form-horizontal .form-group .btn.btn-login {
        width: 200px;
        max-width: 200px;
        min-width: 200px;
    }

.er-loginReg-form .form-group .password-tip {
    display: none;
}

    .er-loginReg-form .form-group .password-tip.show {
        position: absolute;
        z-index: 100;
        display: block;
        bottom: -10px;
        right: auto;
        left: 98%;
        width: 220px;
        height: auto;
        padding: 8px 4px 12px 8px;
        color: #212121;
        background-color: #FAFAFA;
        -webkit-border-radius: 4px;
        -moz-border-radius: 4px;
        border-radius: 4px;
        -webkit-box-shadow: 6px 6px 10px rgba(0,0,0,.5);
        -moz-box-shadow: 6px 6px 10px rgba(0,0,0,.5);
        box-shadow: 6px 6px 10px rgba(0,0,0,.5);
    }

    .er-loginReg-form .form-group .password-tip p {
        margin: 0px;
        font-size: 1.1em;
    }

    .er-loginReg-form .form-group .password-tip ul {
        list-style: none;
        padding-left: 0px;
    }

        .er-loginReg-form .form-group .password-tip ul li {
            float: left;
            width: 65%;
        }

            .er-loginReg-form .form-group .password-tip ul li:nth-child(2n) {
                width: 35%;
            }

.btn-login:hover {
    border-color: #ECECEC;
    color: #ECECEC;
}

.btn-login:focus:active {
    background: #364760;
}

.er-forgotpass {
    margin-bottom: 42px;
}

    .er-forgotpass a {
        color: #fff;
    }

.er-copyright-text {
    /*bottom: -38px;
    margin: 0 -15px;
    position: absolute;
    width: 100%;*/
}

.er-reglink {
    width: 70%;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

    .er-reglink .btn {
        border: 2px solid #8FC04E;
        color: #8FC04E;
        width: 100%;
        background: #fff;
        border-radius: 0;
        margin: 0;
        font-weight: bold;
    }

        .er-reglink .btn:focus:active {
            padding: 8px 12px;
            outline: none;
            background: #8FC04E;
            color: #fff;
            margin: 0;
        }




.resetPasswordErrorBox .close {
    color: #a94442;
    font-weight: normal;
    opacity: 0.8;
    position: absolute;
    right: 8px;
    top: 3px;
    width: auto !important;
    display: inline-block;
}

.resetPasswordErrorBox .errorMessage {
    display: inline-block;
    margin-right: 20px;
    color: white;
}

.errorMessage ul {
    margin-bottom: 0;
}

.error-alertBox .close {
    color: #a94442;
    font-weight: normal;
    opacity: 0.8;
    position: absolute;
    right: 8px;
    top: 3px;
    width: auto !important;
    display: inline-block;
}

.error-alertBox .errorMessage {
    display: inline-block;
    margin-right: 20px;
}

.error-alertBox ul {
    margin-bottom: 0;
}

/* I don't think was being used anywhere, but iddn't want to delete it if I figure out it did effect soemthing later
    was in /verification/index.css for some reason. that error-alertBox class is never used per a search
.error-alertBox span:not(.close) {
    padding-right: 15px;
    display: inline-block;
}
*/


@media only screen and (max-width : 750px) {
    .er-loginReg-form .form-group .password-tip.show {
        bottom: 95%;
        top: auto;
        right: 4px;
        left: 44px;
    }
}

@media only screen and (max-width : 750px) {
    #login section.login-tile {
        height: auto;
        min-height: initial;
        max-height: initial;
        padding-bottom: 40px;
        border-bottom-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }

    footer#layout-footer {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }

        footer#layout-footer h6 {
            line-height: 20px;
            padding: 10px;
        }
}


@media only screen and (max-width : 320px) {
    body {
        /*padding-top:52px;*/
    }

    .er-loginReg-mainblock,
    .er-logReg-container .footer {
        width: 290px !important;
    }

    .er-logReg-container .er-copyright-text, .er-logReg-container .version-num {
        display: block;
        text-align: center;
        width: 100%;
    }
}


#expired .content {
    border: 1px solid #bbb;
    width: 25%;
    padding: 40px;
    margin: 0 auto 0 auto;
}

#expired .lock {
    font-size: 40px;
    color: #f3bc65;
    padding: 0 0 20px 0;
}

#expired .warning {
    color: #fff;
    font-size: 150%;
}

#expired .notification {
    color: #ebebeb;
    font-size: 17px;
}


@media screen and (max-width:1100px) {
    #expired .content {
        width: 50%;
        margin: 25%;
        text-align: center;
    }
}


@media screen and (max-width:900px) {
    #expired .content {
        width: 75%;
        margin: 12.5%;
    }
}

@media screen and (max-width:700px) {
    #expired .content {
        width: 80%;
        margin: 10%;
    }
    section.version-copyright #VersionCopyrightViewComponent p{
        font-size: 10px;
    }
}

@media screen and (max-width:500px) {
    #expired .content {
        width: 90%;
        margin: 5%;
        padding: 15px;
    }
}

@media screen and (max-width:400px) {
    #expired .content {
        width: 97%;
        margin: 1.5%;
    }

    #expired .lock {
        display: block;
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
    }

    #expired .warning, #expired h1, #expired h2 {
        text-align: center;
    }
}

/* override userstylesheet*/
.fade:not(.show){
    opacity: 1 !important;
}

.alert.alert-danger {
    position: relative;
    padding: 10px;
    background-color: transparent !important;
    border: none !important;
    color: #E7E7E7;
}

    .alert.alert-danger > span:first-child {
        width: 90%;
    }



/* Don't know if these were being used at all. Found them in Verification/index.css
        
.er-logReg-container .footer {
    margin-top: 0;
}

.er-loginReg-form .form-horizontal .form-group input.form-control {
    padding-left: 10px;
}

.er-loginReg-form .form-horizontal .form-group.er-verfifyIdentity-ssn input.form-control {
    display: inline;
}

    */