.loginPage{
    margin: 0px;
    padding: 0px;
    background: #F1F2F7;
}
.loginPage .leftSide{
    width: 43%;
}
.loginPage .rightSide{
    width: 50%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loginPage .loginImg{
    margin-left: 60px;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.loginPage .login_container{
    display: flex;
}
.loginPage .login_logo{
    text-align: center;
    margin-bottom: 60px;
    /*background-image: url("images/login_logo.svg");*/
}
.loginPage .login_logo img{
    max-width: 361px;
    width:100%;
}
.loginPage .form-signIn{
    background: #fff;
    padding: 47px 34px 34px 34px;
    width: 400px;
    margin: 135px auto;
    border-radius: 5px;
}
.loginPage .user-login-info{
    background: #fff;
    margin: -20px -20px 20px -20px;
    padding: 20px;
}
.loginPage .copyRight{
    color: #2D2E2D;
    font-family: Arial;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 12px 0px 0px 0px;
    padding: 0;
}
.loginPage .copyRight a{
    color: #7378B8;
}
.loginPage .copyRight span{
    color: #C5C5C5;
    font-family: Arial;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.loginPage .user-login-info input{
    border-radius: 5px;
    border: 1px solid #C0C0C0;
    padding: 21px;
    color: #000;
    font-family: "Montserrat arm";
    font-size: 14px;
    font-weight: 400;
}
.loginPage .login_input{
    margin-bottom: 26px;
}
.loginPage .show_pass{
    color: #000;
    font-family: "Montserrat arm";
    font-size: 10px;
    font-weight: 400;
    margin-top: 15px;
    display: flex;
    align-items: flex-start;
}
.loginPage .show_pass .checkbox{
    border-radius: 3px;
    border: 1px solid #C0C0C0;
    margin-right: 2px;
    margin-top: 0px;
    width: 18px;
}
.loginPage .btn-login{
    border-radius: 5px;
    background: #7378B8;
    color: #FFF;
    font-family: "Montserrat arm";
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    -webkit-box-shadow: 0px 3px 0px 0px #585B8B;
    -moz-box-shadow: 0px 3px 0px 0px #585B8B;
    box-shadow: 0px 3px 0px 0px #585B8B;
}
.loginPage .btn-login:hover{
    color: #fff;
    background: #666bab;
}
.loginPage .project_version{
    margin-top: 28px;
}
.loginPage .project_version p{
    color: #AEAEAF;
    font-family: Arial;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    margin: 0px;
}
.loginPage .project_language{
    position: absolute;
    right: 0px;
    top: 10px;
}
.loginPage .login_container{
    position: relative;
}
.loginPage .project_language .dropdown-menu{
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border-radius: 0px 0px 0px 4px;
    min-width: 100%;
    border: none;
    box-shadow: 0 12px 19px rgba(0,0,0,.175);
}
.loginPage .open>.dropdown-menu{
    display: block;
}
.loginPage .project_language .language{
    background: #fff;
    height: 30px;
    border-radius: 3px 0px 0px 3px;
    padding-top: 4px;
}
.loginPage .dropdown-toggle{
    padding: 10px 30px 10px 10px;
    text-decoration: none;
}
.loginPage .dropdown-toggle:hover, .dropdown-toggle:focus{
    text-decoration: none;
}
.loginPage .dropdown-menu>li>a{
    padding: 3px 10px;
}
.loginPage .arrow img{
    width: 10px;
    margin-right: 9px;
}
#incorrectLogIn{
    font-size: 13px;
    color: red;
    display: none;
    margin-top: 4px;
}
@media (max-width: 900px) {
    .loginPage .rightSide{
        height: auto;
    }
    .loginPage .leftSide{
        display: none;
    }
    .loginPage .rightSide{
        width: 100%;
    }
    .loginPage .form-signIn{
        width: 85%;
        margin: 90px auto;
    }
}