@CHARSET "UTF-8";

html {
    overflow: hidden;
    height: 100%;
}

body {
    background-image: url(../../../common/img/loginNoCircle.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

.div_companytitle {

}

.LanguageChange {
    position: fixed;
    right: 5%;
    width: 155px;
    height: 47px;
    top: 8%;
    z-index: 2;
}

.language {
    width: 100%;
    height: 100%;
    font-size: 18px;
    font-weight: bold;
    /*color: #23b7cb;*/
    padding: 5px 15px;
    background: #fff;
    border: 1px transparent solid;
    border-radius: 5px;
    position: relative;
    box-shadow: 2px 6px 10px #000;
}

.language:after {
    content: '';
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: linear-gradient(270deg, #0171C7, #23b7cb);
    border-radius: 5px;
    z-index: -1;
}

.loginForm {
    text-align: center;
    width: 740px;
    height: 760px;
    border-radius: 10px;
    position: fixed;
    left: 50%;
    top: 45%;
    margin: -340px 0 0 -394px;
    padding: 171.5px 158px 175.5px 200px;
    background-image: url(../../../common/img/loginCircle.png);
    background-size: 65%;
    background-repeat: no-repeat;
    background-position-x: 145px;
    background-position-y: 125px;
}

#login h4 {
    color: #e8e7b730;
    margin-top: 5%;
}

.login_userName {
    width: 330px;
    margin-left: 20px;
    height: 42px;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 2px;
    border-radius: 20px;
    background-image: -webkit-linear-gradient(#0171C7, #23b7cb);
}

.login_password {
    width: 330px;
    margin-left: 20px;
    height: 42px;
    margin-top: 20px;
    box-sizing: border-box;
    padding: 2px;
    border-radius: 20px;
    background-image: -webkit-linear-gradient(#0171C7, #23b7cb);
}

.login_VerificationCode {
    width: 199px;
    height: 42px;
    margin: 20px 15px 0 5px;

    box-sizing: border-box;
    padding: 2px;
    border-radius: 20px;
    background-image: -webkit-linear-gradient(#0171C7, #23b7cb);
    display: inline-block;
}

.content_row {
    height: 100%;
    border-radius: 20px;
    background: #fff;
}

.login_controller {
    width: 220px;
    height: 42px;
    margin: 26px auto;
    margin-bottom: 0;
}

.loginButton {
    width: 80%;
    height: 100%;
    font-size: 18px;
    font-weight: bold;
    color: white;
    background: -webkit-gradient(linear, 0 0, 0 100%, from(#0171C7), to(#23b7cb));
    border: 1px transparent solid;
    border-radius: 20px;
    outline: none;
}

/* 为登陆按钮设置悬浮效果 */
.loginButton:hover {
    /* 悬浮效果背景颜色渐变方向改变 */
    background: -webkit-linear-gradient(left, #0171C7, #23b7cb);
}

.in {
    width: 300px;
    height: 100%;
    font-size: 20px;
    padding: 5px 0 5px 10px;
    /* 设置圆角 */
    border-radius: 20px;
    /* 设置边框 */
    border: 0.5px;
    /* 去点选中时的外面方边框 */
    outline: none;
}

#randCode {
    width: 195px;
}