.loginPage{
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: url(../../images/login_bg-dev.jpg) center no-repeat;
    background-size: cover;
}
.devBg{
    background: url(../../images/login_bg-dev1.jpg) center no-repeat;
    background-size: cover;
}

.loginBox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    padding: 45px 50px 30px 50px;
    width: 90%;
    max-width: 500px;
    background: #fff;
    box-shadow:0px 0px 20px 0px rgba(0, 0, 0, 0.2);
    border-radius:10px;
}
.site-branding__logo--full{
  height: 60px;
  display: inline-block;
  margin-right: 20px;
}
.loginBox .top{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  color: #525355;
  margin-bottom: 10px;
}
.loginBox .tit{
    text-align: center;
}
.loginBox .tit img{
    display: inline-block;
    height: 46px;
}
.loginBox .tit p{
    margin: 10px 0;
}
.loginBox .tit p span{
    position: relative;
    line-height: 40px;
    font-size: 18px;
    color: #666;
}
.loginBox .tit p span::after,.loginBox .tit p span::before{
    content: '';
    position: absolute;
    top: 12px;
    width:85px;
    height:1px;
}
.loginBox .tit p span::before{
    left: -95px;
    background:linear-gradient(90deg,rgba(255,255,255,0) 0%,rgba(214,214,214,1) 100%);
}
.loginBox .tit p span::after{
    right: -95px;
    background:linear-gradient(90deg,rgba(214,214,214,1) 0%,rgba(255,255,255,0) 100%);
}

.form-group label{
    color: #666;
    font-size: 14px;
    font-weight: normal;
    line-height: 30px;
}
.form-group .form-control{
    height: 46px;
    border:1px solid rgba(215,215,222,1);
    box-shadow:0px 2px 5px 0px rgba(0, 0, 0, 0.1) inset;
    border-radius:4px;
}
.form-group .captcha{
    width: 65%;
}
.form-group .captcha-img{
    position: absolute;
    top: 0;
    right: 0;
    width: 130px;
    height: 100%;
}
.btn_sub{
    margin-top: 20px;
    width: 100%;
    color: #1F81B9;
    font-size:18px;
    line-height:52px;
    box-shadow:0px 5px 10px 0px rgba(#FCCF00,0.27);
    background:#FCCF00;
    border: 0;
    border-radius:4px;
    transition: all .3s;
}
.btn_sub:hover{
    background:#f8cc0b;
}
@media (max-width: 1920px){
    .loginBox{
        padding: 25px 25px 10px 25px;
        max-width: 420px;
    }
    .loginBox .tit img{
        height: 40px;
    }
    .loginBox .tit p{
        margin: 5px 0;
    }
    .loginBox .tit p span {
        line-height: 40px;
        font-size: 16px;
    }
    .form-group{
        margin-bottom: 0;
    }
    .form-group .form-control{
        height: 40px;
        margin-bottom: 10px;
    }
    .form-group .captcha-img{
        width: 120px;
    }
    .btn_sub{
        font-size: 14px;
        line-height: 45px;
    }
}
@media (max-width: 800px){
    .loginBox{
        padding: 15px 15px 10px 15px;
    }
    .loginBox .tit img{
        height: 36px;
    }
    .js-ajax-form{
        margin-bottom: 0;
    }
    .form-group{
        margin-bottom: 10px;
    }
    .form-group .form-control{
        height: 40px;
    }
    .form-group label{
        line-height: 26px;
    }
    .form-group .captcha{
        width:46%;
    }
    .btn_sub{
        line-height: 40px;
    }
}

input:-internal-autofill-previewed,
input:-internal-autofill-selected {
    -webkit-text-fill-color: #333 !important;
    transition: background-color 5000s ease-in-out 0s !important;
}
