/*register panel*/
.register-panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(0, 0, 0, 0.5);
    z-index: 100;
}

.register-container {
    width:430px;
    height:229px;
    background:rgba(255,255,255,1);
    border-radius:3px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
}

.register-container .title {
    font-size:27px;
    font-weight:500;
    color:rgba(0,0,0,0.65);
    line-height:38px;
}

.register-container .content {
    font-size:16px;
    font-weight:400;
    color:rgba(0,0,0,0.64);
    line-height:26px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.register-container .confirm-btn {
    width:78px;
    height:36px;
    background:rgba(64,158,255,1);
    border-radius:3px;
    font-size:14px;
    font-weight:500;
    color:rgba(255,255,255,1);
    line-height:36px;
    text-align: center;
    margin-top: 23px;
    cursor: pointer;
}

.hidden {
    display: none;
}

/*auth container*/
.auth-wrapper .auth-content {
    width: auto;
}

.auth-container {
    display: flex;
    /*width: 720px;*/
}

.auth-container .card {
    width: 360px;
}

.form-tip {
    font-size:14px;
    font-weight:400;
    color:rgba(108,117,125,1);
    line-height:20px;
    margin-bottom: 18px;
    text-align: left;
}

/*qrcode card*/
.qrcode-card {
    /*background: #F9FCFF;*/
    background: white;
}

.qrcode-card .card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tab-container {
    width:180px;
    height:32px;
    line-height: 32px;
    border-radius:3px;
    border:1px solid rgba(216,220,230,1);
    overflow: hidden;
    font-size:14px;
    display: flex;
}

.tab-item {
    /*width: 50%;*/
    width: 100%;
    height: 100%;
    background-color: white;
    color:rgba(108,117,125,1);
}

.active-tab-item {
    background:rgba(64,158,255,1);
    color: white;
}

#form input {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    background: #fff;
    box-shadow: none;
}

/*处理chrome自动填充后背景色为黄色的问题*/
#form input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #fff inset;
}

#form input[type=text]:focus, input[type=password]:focus {
  -webkit-box-shadow: 0 0 0 1000px white inset;
}

/*微信二维码样式*/
#wxQrcode iframe {
    width: 300px;
    height: 300px;
}



