/* 基础重置 */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

body {
    background-color: #ffffff;
    padding: 20px;
    color: #333;
}

h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 30px;
    font-weight: 500;
}

/* 表单行容器 */
.form-row {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 35px;  /* 关键：增加每一行之间的距离 */
    padding-bottom: 12px; /* 增加文字与下划线的距离 */
}

.form-row p {
    display: flex;
    align-items: center;
    width: 100%;
    margin: 0;                 /* 必须清除 p 的默认 margin */
}

/* 标签与输入框 */
.form-row span, 
.form-row input {
    font-size: 18px;      /* 从 16px 调大，视觉更清晰 */
}

.form-row span {
    width: 80px;               /* 固定宽度防止长短不一 */
    font-size: 16px;
    color: #333;
    flex-shrink: 0;            /* 防止文字被挤压换行 */
}

.form-row input {
    flex: 1;                   /* 自动撑满剩余空间 */
    border: none;              /* 去掉自带边框 */
    outline: none;             /* 去掉点击时的蓝框 */
    font-size: 16px;
    padding: 0 10px;           /* 输入文字与左侧保持间距 */
    background: transparent;
}

/* 输入框占位符颜色 */
.form-row input::placeholder {
    color: #ccc;
}

/* 发送验证码按钮 */
#sendCodeBtn {
    background: transparent;
    border: none;
    color: #00469c;
    font-size: 14px;
    flex-shrink: 0;
    cursor: pointer;
}

#sendCodeBtn {
    font-size: 16px;      /* 稍微调大一点 */
    font-weight: 500;
}

#sendCodeBtn:disabled {
    color: #999;
}

/* 隐私条款部分 (新增 HTML 对应的样式) */
.agreement-row {
    margin-top: 30px;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.agreement-row input[type="checkbox"] {
    margin-right: 8px;
    margin-top: 3px;
}

.agreement-row a {
    color: #00469c;
    text-decoration: none;
}

/* 提交按钮 */
button[type="submit"] {
    width: 100%;
    background-color: #00469c; 
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px;
    font-size: 18px;
    margin-top: 30px;
    cursor: pointer;
    transition: background 0.3s;
}

button[type="submit"]:active {
    background-color: #003375;
}

/* 提示文字（底部电话那段） */
.footer-tip {
    font-size: 13px;
    color: #666;
    margin-top: 20px;
    line-height: 1.6;
}