.loginHeader {padding: 0 2%;}

.loginLogo {
    padding: 30px 0;
}

    .loginLogo img {
        width: 160px;
    }

.loginPage {
    background: #fff;
    height: 100vh;
    position: relative;
}

    .loginPage::before {
        content: '';
        background: url('../img/loginBg.png');
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: right;
        width: 100%;
        height: 100vh;
        position: absolute;
        top: 0;
        left: 0;
        margin-left: -48%;
    }

.loginSection {
    position: relative;
    /*! margin: auto; */
    /*! left: 0; */
    /*! right: 0; */
    /*! top: 20%; */
    /*! text-align: center; */
    margin-top: 2%;
}

    .loginSection h2 {
        color: #fff;
        margin-bottom: 35px;
        font-size: 30px;
    }

    .loginSection .loginForm {
        background: #fff;
        padding: 30px 0;
        border-radius: 8px;
        margin: 4% 0 0 24%;
    }

        .loginSection .loginForm h3 {
            text-align: left;
            margin-bottom: 28px;
            color: #333;
            font-weight: 700;
            font-size: 32px;
        }

.form-control {
    background: #f0f1f3;
    border: 1px solid #f0f1f3;
    height: 36px;
    font-size: 14px;
}

    .form-control:focus {
        background: #f0f1f3;
        border: 1px solid #f27400;
        box-shadow: none;
    }

.loginSection .loginForm .remLine {
    margin-bottom: 15px;
}

    .loginSection .loginForm .remLine .checkBoxLine {
        float: left;
    }

    .loginSection .loginForm .remLine a {
        float: right;
    }

    .loginSection .loginForm .remLine .checkBoxLine input {
        margin-right: 8px;
    }

.loginSection .loginForm .loginBtn {
    padding: 10px 0 0;
}

    .loginSection .loginForm .loginBtn input {
        cursor: pointer;
        width: 100%;
        background: #2157ad;
        color: #fff;
        border: none;
        padding: 8px;
        border-radius: 4px;
        text-transform: uppercase;
    }

        .loginSection .loginForm .loginBtn input:hover {
            background: #2157ad;
        }

.loginCopyright {
    text-align: left;
    padding-top: 18px;
}

    .loginCopyright p {
        margin: auto;
        color: #666;
        padding: 15px 0;
        font-size: 15px;
    }

        .loginCopyright p span {
            display: block;
        }

    .loginCopyright a {
        color: #2157ad;
        font-weight: bold;
    }
    
.loginImg {
    margin-top: 40%;
}

    .loginImg figure {
        text-align: center;
    }

        .loginImg figure img {
            width: 60%;
            margin: auto;
        }
        
.loginPageLink {margin: 0;padding: 10px 0;text-align: right;}

.loginPageLink li {display: inline-block;padding: 8px 12px;position: relative;}

.loginPageLink li::before {
    content:'';  
    position: absolute;
    width: 1px;
    height: 15px;
    background: #a8a4a4;
    left: -2px;
    top: 13px;
}

.loginPageLink li:nth-child(1)::before {display: none;}

.loginPageLink li a {color: #333;font-weight: bold;font-size: 16px;}