/* 注册表单页样式 */

/* 标题区 */
.title-area {
    text-align: center;
    margin-top: 24px;
    margin-bottom: 32px;
}

.main-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.sub-title {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
    margin-bottom: 16px;
}

/* Logo容器 */
.logo-container {
    margin: 0 auto;
    width: 80px;
    height: 80px;
    margin-bottom: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 表单核心区 */
.form-area {
    padding: 0 24px;
}

/* 输入框组 */
.input-group {
    position: relative;
    height: 50px;
    background-color: #FFFFFF;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.invite-input {
    border-style: dashed;
    margin-bottom: 32px;
}

.input-icon {
    margin-left: 16px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 短信验证码区 */
.sms-group {
    display: flex;
    justify-content: space-between;
    margin-bottom: 24px;
}

.sms-input {
    width: 70%;
    margin-bottom: 0;
}

.sms-button {
    width: 25%;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    font-size: 14px;
    font-weight: 500;
    border-radius: 12px;
}

/* 邀请码跳过文字 */
.skip-invite {
    position: absolute;
    right: 16px;
    font-size: 12px;
    color: var(--primary-color);
    cursor: pointer;
}

/* 注册按钮 */
.register-button {
    width: 100%;
    height: 54px;
    background-color: var(--primary-color);
    color: white;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    margin-bottom: 20px;
}

/* 协议文字 */
.agreement-text {
    text-align: center;
    font-size: 11px;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.agreement-link {
    color: var(--primary-color);
    cursor: pointer;
}
/* 登录链接 */
.register-link {
    text-align: center;
    margin-top: 16px;
    margin-bottom: 32px;
}

.register-link span {
    font-size: 14px;
    color: var(--text-gray);
}

.register-link a {
    font-size: 14px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}