/* 页面布局 */
.content-wrapper {
    padding-top: 56px;
    min-height: 100vh;
    background: white;
}

/* 注册步骤 */
.register-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    background: #f5f7fa;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e8e8e8;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.step.active .step-num {
    background: #1677ff;
    color: white;
}

.step-text {
    font-size: 13px;
    color: #666;
}

.step.active .step-text {
    color: #1677ff;
}

.step-line {
    width: 60px;
    height: 1px;
    background: #e8e8e8;
    margin: 0 16px;
}

/* 注册表单 */
.register-form {
    padding: 24px 20px;
}

.form-group {
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    padding: 12px 0;
}

.input-group i {
    font-size: 20px;
    color: #999;
    margin-right: 12px;
}

.input-group .toggle-password {
    position: absolute;
    right: 0;
    cursor: pointer;
}

.form-control {
    border: none;
    padding: 0;
    font-size: 16px;
    background: transparent;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

/* 验证码按钮 */
.verification-group {
    position: relative;
}

.btn-send-code {
    position: absolute;
    right: 0;
    border: none;
    background: none;
    color: #1677ff;
    font-size: 14px;
    padding: 0;
}

.btn-send-code:disabled {
    color: #999;
}

/* 密码提示 */
.password-tips {
    margin: 16px 0 24px;
    padding: 16px;
    background: #f5f7fa;
    border-radius: 8px;
}

.password-tips p {
    color: #666;
    font-size: 14px;
    margin-bottom: 8px;
}

.password-tips ul {
    padding-left: 20px;
    margin: 0;
}

.password-tips li {
    color: #999;
    font-size: 13px;
    margin-bottom: 4px;
}

/* 协议勾选 */
.agreement-check {
    margin: 24px 0;
    font-size: 14px;
    color: #666;
}

.agreement-check label {
    display: flex;
    align-items: center;
    gap: 8px;
}

.agreement-check a {
    color: #1677ff;
    text-decoration: none;
}

/* 按钮样式 */
.next-btn,
.submit-btn {
    height: 44px;
    font-size: 16px;
    background: #1677ff;
    border: none;
    border-radius: 22px;
}

.next-btn:active,
.submit-btn:active {
    transform: scale(0.98);
}

/* Toast提示 */
.toast-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 24px;
    font-size: 14px;
    z-index: 1001;
    animation: fadeInOut 2s ease-in-out;
}

@keyframes fadeInOut {
    0% { opacity: 0; transform: translate(-50%, -40%); }
    15% { opacity: 1; transform: translate(-50%, -50%); }
    85% { opacity: 1; transform: translate(-50%, -50%); }
    100% { opacity: 0; transform: translate(-50%, -60%); }
} 