/* 注册页面样式 */
body {
    background: #fff;
}

.header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.register-container {
    display: flex;
    justify-content: center;
    padding: 50px 0;
}

.register-box {
    width: 400px;
}

.register-header {
    margin-bottom: 30px;
}

.register-header h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.register-header p {
    text-align: right;
    font-size: 14px;
}

.register-header a {
    color: #1890ff;
    text-decoration: none;
}

/* 表单样式 */
.form-item {
    margin-bottom: 20px;
}

.form-item input[type="text"],
.form-item input[type="password"],
.form-item input[type="tel"] {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.3s;
}

.form-item input:focus {
    border-color: #1890ff;
}

.error-msg {
    margin-top: 5px;
    font-size: 12px;
    color: #f40;
}

/* 验证码 */
.verify-code {
    display: flex;
    gap: 10px;
}

.verify-code input {
    flex: 1;
}

.btn-code {
    width: 120px;
    height: 40px;
    background: #1890ff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-code:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* 协议 */
.agreement {
    font-size: 14px;
    color: #666;
}

.agreement a {
    color: #1890ff;
    text-decoration: none;
}

/* 注册按钮 */
.btn-register {
    width: 100%;
    height: 44px;
    background: #1890ff;
    color: #fff;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn-register:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* 错误状态 */
.form-item.error input {
    border-color: #f40;
}

/* 页脚 */
.footer {
    margin-top: 50px;
    padding: 40px 0;
    background: #f5f5f5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    padding: 0 20px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 16px;
    color: #333;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #666;
    text-decoration: none;
}

.copyright {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    text-align: center;
    color: #999;
} 