/**
 注册样式定义文件
 */

/* 主注册容器 */
.register-container-box {
    width: 100%;
    min-height: 1080px;
    border-radius: 0px 0px 0px 0px;
    background: url("/assets/addons/cms/template/assets/images/home-bg.jpg");
    background-size: cover;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.register-container-box .register-box-main {
    display: flex;
    width: calc(484px * 2);
    height: 510px;
    margin:  210px auto 150px auto;

    border-radius: 8px;
    overflow: hidden;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0px 0px 24px 0px rgba(24,80,165,0.15);

}

/* 左侧欢迎图区域 */
.register-container-box .register-box-main-left {
    width: 484px;
    position: relative;
    color: white;
    height: 510px;
    display: flex;
    flex-direction: column;
    background: url("/assets/images/register-welcome.jpg");
    background-repeat: no-repeat;

    background-size: cover;

}
.register-container-box .register-box-main-left .top-box{
    width: 100%;
    padding: 32px;
    gap:10px;
    display: flex;
    flex-direction: column;

}
.register-container-box .register-box-main-left .top-box h1{
    font-size: 32px;
    color:#005BA3;
    font-weight: 500;
}
.register-container-box .register-box-main-left .top-box p{
    font-size: 20px;
    color: #111;
    font-weight: 400;
    display: block;
    margin: 0;
    font-family: "arial", "微软雅黑";
}
.register-container-box .register-box-main-left::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.register-box-main-left img {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    margin-bottom: 30px;
    max-width: 80%;
    height: auto;
}

/* 右侧表单区域 */
.register-container-box .register-box-main-right {
    width: 484px;
    background: white;
    padding: 44px 74px 32px 74px;
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 510px;
    overflow: hidden;

}
.register-container-box .register-box-main-right .tab{
    display: flex;
    gap:24px;
    width: 100%;
    margin-bottom: 32px !important;
}
.register-container-box .register-box-main-right .tab-item{
    height: 28px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 20px;
    color: rgba(0,0,0,0.6);
    text-align: center;
    font-style: normal;
    text-transform: none;
    cursor: pointer;

}
.register-container-box .register-box-main-right .tab-item.active{
    font-family: PingFang SC, PingFang SC;
    font-weight: 500;
    position: relative;
    color: #000000;
}
.register-container-box .register-box-main-right .tab-item.active::after{
    content:'';
    width:40px;
    height: 3px;
    background: #BD5353;
    display: block;
    position: absolute;
    /**
        绝对居中
     */
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
}

.register-container-box .register-input-box{
    background: #F5F7FA !important;
    border-radius: 4px !important;
    height: 54px;
    overflow: hidden;
    margin-top: 0 !important;
    margin-bottom: 24px !important;
    border:none !important;
}
.register-container-box .register-input-box  input{
    background: #F5F7FA !important;
    height: 54px;
    line-height: 54px;
    font-family: PingFang SC, PingFang SC;
    font-weight: 400;
    font-size: 16px !important;
    color: rgba(0,0,0,1);
    text-align: left;
    font-style: normal;
    text-transform: none;
}
.register-container-box .register-input-box  input.placeholder{
    color: rgba(0,0,0,0.2);
    font-size: 16px !important;
}
.register-container-box .captcha-btn{
    color: rgba(0,0,0,1);
    background: transparent !important;
    width: 100px;
    height: 30px;
    background-color: #fff;
    border: 0;
    margin-left: 10px;
}
.register-container-box .submit-btn{
    width: 336px;
    height: 44px;
    background: #005BA3;
    border-radius: 4px 4px 4px 4px;
    margin : 24px auto auto auto;
}