/* register.html + login.html 样式 */
.page-hero {
    background: linear-gradient(135deg, #1a3a6b, #2a4a7b);
    color: #fff; padding: 60px 0; text-align: center;
}
.page-hero h1 { font-size: 36px; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.7); }

.form-section {
    max-width: 700px; margin: 50px auto; padding: 0 20px;
}
.form-card {
    background: #fff; border-radius: 16px; padding: 40px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}
.form-title { font-size: 20px; color: #1a3a6b; margin-bottom: 24px; text-align: center; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; color: #333; font-weight: 600; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; border: 1px solid #e0e0e0; border-radius: 8px;
    padding: 12px 16px; font-size: 14px; font-family: 'Microsoft YaHei', sans-serif;
    outline: none; transition: border-color 0.3s; color: #333;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: #1a3a6b;
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: flex; gap: 16px; }
.form-row .form-group { flex: 1; }
.form-tip { font-size: 12px; color: #888; margin-top: 6px; }
.form-agree { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.form-agree input { width: auto; }
.form-agree label { font-size: 13px; color: #666; }
.btn-submit {
    width: 100%; background: #C9A84C; color: #fff; border: none;
    padding: 16px; border-radius: 8px; font-size: 16px; font-weight: 600;
    cursor: pointer; transition: background 0.3s;
}
.btn-submit:hover { background: #b8963f; }
.btn-submit:disabled { background: #ccc; cursor: not-allowed; }

.success-msg {
    text-align: center; padding: 40px;
    display: none;
}
.success-msg h3 { font-size: 24px; color: #2D8A4E; margin-bottom: 16px; }
.success-msg p { font-size: 15px; color: #666; }

/* 入驻流程 */
.flow-steps { display: flex; justify-content: space-between; margin: 30px 0 40px; position: relative; }
.flow-steps::before {
    content: ''; position: absolute; top: 20px; left: 10%; right: 10%;
    height: 2px; background: #e0e0e0;
}
.flow-step { text-align: center; position: relative; z-index: 1; flex: 1; }
.flow-step-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: #fff; border: 3px solid #1a3a6b;
    color: #1a3a6b; font-size: 18px; font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 10px;
}
.flow-step.done .flow-step-icon { background: #1a3a6b; color: #fff; }
.flow-step-text { font-size: 13px; color: #333; font-weight: 500; }

/* login页 */
.login-tabs { display: flex; gap: 0; margin-bottom: 30px; border-bottom: 2px solid #f0f0f0; }
.login-tab { padding: 12px 30px; font-size: 15px; color: #888; cursor: pointer; border-bottom: 3px solid transparent; transition: all 0.3s; }
.login-tab.active { color: #1a3a6b; border-bottom-color: #1a3a6b; font-weight: 600; }
.qr-code { width: 160px; height: 160px; background: #f0f0f0; margin: 20px auto; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: #888; }
.social-login { text-align: center; margin-top: 20px; }
.social-login p { font-size: 13px; color: #888; margin-bottom: 16px; }
.social-btns { display: flex; gap: 12px; justify-content: center; }
.social-btn { border: 1px solid #e0e0e0; border-radius: 8px; padding: 10px 24px; font-size: 14px; color: #333; cursor: pointer; background: #fff; }

/* 验证码倒计时 */
.countdown { font-size: 13px; color: #1a3a6b; cursor: pointer; }
.countdown.disabled { color: #ccc; cursor: not-allowed; }