

.wrapper{
    height: 500px;
    background: url(/img/images/loginbg.png) no-repeat center;
    -webkit-background-size: 100% 500px;
    background-size: 100% 500px;

}
.loginWapper{
    width: 400px;
    height: 360px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}
.tabs{
    width: 100%;
    height: 60px;
}
.tabs .cell{
    position: relative;
    width: 50%;
    height: 100%;
    font-size: 16px;
    color: #666;
    background: #E9EDF0;
    cursor: pointer;
}
.tabs .cell.active{
    color: #fff;
    background: #004C92;
}
.tabs .cell.active:before{
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 0;
    border: solid 10px transparent;
    border-bottom-color: #fff;
}
.loginBox{
    height: calc(100% - 60px);
    padding: 40px 40px;
}
.loginBox .cell{
    position: relative;
    width: 100%;
    height: 40px;
    margin-bottom: 20px;
}
.loginBox .cell .icon{
    position: absolute;
    left: 10px;
    display: inline-block;
    width: 25px;
    height: 30px;
}
.loginBox .cell .icon1{
    background: url(/img/images/login-3.png) no-repeat center;
    background-size: 25px 30px;
}
.loginBox .cell .icon2{
    background: url(/img/images/login-2.png) no-repeat center;
    background-size: 25px 30px;
}
.loginBox .cell .icon3{
    background: url(/img/images/login-1.png) no-repeat center;
    background-size: 25px 30px;
}
.loginBox .cell .input{
    flex: 1;
    width: 100%;
    height: 100%;
    padding: 0px 10px 0 50px;
    background: #FCFCFC;
    border: solid 1px #CACACA;
    border-radius: 10px;
}
.loginBox .cell .input:focus{
    border-color: #004C92;
}
.auth-code{
    width: 100px;
    height: 100%;
    margin-left: 20px;
    background: #fff;
    border: solid 1px #CACACA;
    border-radius: 10px;
}
.logBtns .logBtn{
    width: 50%;
    height: 40px;
    color: #fff;
    border-radius: 10px;
    opacity: .9;
}
.logBtns .logBtn+ .logBtn{
    margin-left: 20px;
}
.logBtns .logBtn.bg1{
    background: #004C92;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.logBtns .logBtn.bg2{
    background: #00A0EA;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.logBtns .logBtn:hover{
    opacity: 1;
}