html,
body {
    height: 100%;
    background: #ffffff;
}
/* 登录框主体样式 */
.register-wrapper {
    min-height: calc(100vh - 237px); /* 减去头部和底部的高度 */
    background: url("../images/login-bg.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.register-container {
    /* width: 760px; */
    margin: 0 auto;
}

.register-box {
    background: #fff;
    padding: 30px 60px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.register-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
}
/* 左侧区域 */
.qrcode-section {
    padding-right: 30px;
    border-right: 1px solid #eee;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.register-qrcode-box {
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.register-qrcode-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* 右侧账号登录区域 */
.account-section {
    width: 360px;
    /* padding-right: 50px; */
}

.register-tabs {
    margin-bottom: 20px;
    text-align: center;
}

.register-tabs .welcome {
    color: #999999;
    margin-top: 5px;
}

/* 表单样式 */
.form-group {
    position: relative;
    margin-bottom: 10px;
}

.form-group .fa {
    position: absolute;
    left: 0;
    top: 12px;
    color: #bbb;
    font-size: 16px;
}

.form-group .fa-mobile {
    font-size: 22px;
    top: 8px;
}

/* 添加密码显示切换图标样式 */
.form-group .password-toggle {
    position: absolute;
    left: auto;
    right: 0;
    top: 12px;
    color: #bbb;
    cursor: pointer;
    font-size: 16px;
}

.form-group .password-toggle:hover {
    color: #447bfe;
}

.form-input {
    width: 100%;
    height: 40px;
    padding: 0 0 5px 25px; /* 左侧添加内边距，为图标留出空间 */
    border: none;
    border-bottom: 1px solid #eeeeee;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-input:focus {
    outline: none;
    border-bottom-color: #447bfe;
}

.verification-group {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.input-with-icon {
    position: relative;
    flex: 1;
}

.verification-group .form-input {
    width: 100%;
}

.tab-item {
    padding: 10px 0;
    color: #999999;
    text-decoration: none;
    margin-right: 20px;
    font-size: 16px;
}

.tab-item.active {
    color: #333333;
    font-size: 22px;
}

/* 输入框占位符样式 */
.form-input::placeholder {
    color: #bbb;
}

/* 兼容不同浏览器的占位符样式 */
.form-input::-webkit-input-placeholder {
    color: #bbb;
}

.form-input::-moz-placeholder {
    color: #bbb;
    opacity: 1;
}

.form-input:-ms-input-placeholder {
    color: #bbb;
}
/*滑动解锁*/
/* Slide verification styles */
.slide-verification {
    margin-bottom: 20px;
}

.slide-track {
    width: 100%;
    height: 40px;
    background: #f5f5f5;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.slide-thumb {
    width: 40px;
    height: 40px;
    background: #447bfe;
    border-radius: 5px;
    position: absolute;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    z-index: 2;
}

.slide-text {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    z-index: 1;
}

.verification-success {
    color: #52c41a;
    text-align: center;
    margin-top: 10px;
    font-size: 14px;
}

.verification-success i {
    margin-right: 5px;
}

/* 验证码按钮样式 */
.send-code-btn {
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    color: #447bfe;
    cursor: pointer;
    white-space: nowrap;
}

.send-code-btn:hover {
    color: #40a9ff;
}

.send-code-fail {
    color: red;
}

.verification-group {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}
.register-btn-con {
    width: 100%;
    height: 40px;
    background: #447bfe;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
}

.register-enter {
    text-align: right;
    margin-top: 10px;
    font-size: 12px;
}
.register-enter span {
    color: #999999;
}

.register-enter a {
    color: #447bfe;
}

.register-footer {
    margin-top: 20px;
    text-align: center;
    color: #a8abb2;
    font-size: 12px;
    line-height: 20px;
}

/*注册下一步*/
/* Form steps styling */
.form-step {
    transition: all 0.3s ease;
}

/* Company info form styles */
.agreement-checkbox {
    display: flex;
    align-items: center;
    margin: 20px 0;
}

.agreement-checkbox input {
    margin-right: 10px;
}

.agreement-checkbox a {
    color: #447bfe;
    text-decoration: none;
}

.agreement-checkbox a:hover {
    text-decoration: underline;
}

/* Navigation buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-size: 12px;
}
