
/* 进度条样式 */
.step_wrapper {
    margin-top: 50px;
    margin-bottom: 30px;
}
.register_step_list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.register_step_list li {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    color: #999;
    font-size: 14px;
}
.register_step_list li.active {
    color: #333;
}
.register_step_list li.step_line {
    width: 100px;
    height: 1px;
    background-color: #e5e5e5;
    margin: 0 15px;
    margin-bottom: 20px; /* 调整横线位置，对齐圆圈中间 */
    position: relative;
    top: -5px;
}
.step_circle {
    width: 28px;
    height: 28px;
    line-height: 28px;
    border-radius: 50%;
    background-color: #e5e5e5;
    color: #fff;
    text-align: center;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}
.register_step_list li.active .step_circle {
    background-color: #da0a16;
}
.step_text {
    font-size: 14px;
}
.step_circle.check {
    font-family: monospace;
    font-size: 16px;
}

/* 调整标题样式 */
.login_title h3 {
    font-size: 28px;
    font-weight: normal;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: none;
}

/* 输入框区域宽度限制 */
.login_content form {
    max-width: 100%;
}

/* 手机号输入框和下拉框 */
.form-group .col-md-6.text-center.col-md-offset-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 覆盖 registered.css 中的 .input_box 样式 */
.input_box {
    width: 360px !important; /* 强制覆盖 */
    height: 40px !important;
    border: 1px solid #e5e5e5 !important;
    background-color: #f4f8fa;
    padding-left: 15px;
    font-size: 14px;
    color: #333;
    margin: 0 auto;
    border-radius: 0 !important; /* 方角 */
    box-shadow: none !important;
}
.input_box:focus {
    border-color: #da0a16 !important;
    background-color: #fff;
}

/* 手机号前面的区域选择 (假设它是 .info_tel 的一部分或者单独的) */
/* 修正：手机号输入框上面有一个 086 的选择框和用户名，这部分 HTML 结构可能在 JS 里或者我漏了 */

/* 验证码输入框 */
.info_vcode {
    width: 360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.info_vcode .input_box {
    width: 200px !important;
    margin: 0;
}

/* 获取验证码按钮 */
.get_verification_code {
    padding-left: 0;
}
.login_content .get_verification_code a {
    background-color: #ccc;
    color: #fff;
    border-radius: 0;
    text-decoration: none;
    height: 40px;
    line-height: 40px;
    width: 150px !important;
    font-size: 14px;
}

/* 错误提示 */
.p-warn {
    width: 360px;
    margin: 5px auto 15px;
    text-align: left;
    color: #da0a16;
    font-size: 12px;
    display: none; /* 默认隐藏，JS 控制显示 */
}

/* 密码框 */
.info_password, .info_repassword {
    margin-bottom: 20px;
}

/* 下一步按钮 */
#reg_apply_submit_btn {
    background-color: #ff0000; /* 鲜艳的红色 */
    color: #fff;
    border: none;
    border-radius: 0;
    height: 45px;
    font-size: 18px;
    width: 360px;
    margin: 20px auto 0;
    display: block;
}
#reg_apply_submit_btn:hover {
    background-color: #da0a16;
}

/* 已有账号登录链接 */
.direct_login {
    width: 360px;
    margin: 0 auto 10px;
    text-align: right !important;
}
.direct_login a {
    color: #337ab7; /* 蓝色链接 */
    font-size: 14px;
    text-decoration: none;
}

/* 滑块验证码区域 */
#verifyDiv {
    width: 360px !important;
    margin: 0 auto 20px;
    background: #000; /* 占位背景，实际由JS渲染 */
    min-height: 150px;
}

/* 手机号和区号组合框（如果是这样结构的话） */
/* 现在的HTML结构是直接 input#tel，没有区号选择。
   截图显示有 "+086" 和 "sys_admin" (只读用户名)，
   这说明当前的 register-page.html.twig 结构可能缺失了这部分，或者这是注册第二步？
   仔细看截图，进度条在"1. 手机验证"。
   输入框里显示 "sys_admin" 很奇怪，可能是自动填充的或者是用户名字段？
   截图下面有 "向右滑动完成验证"。
   再下面是 "请输入验证码" 和 "获取手机验证码"。
   再下面是 密码 和 确认密码。
   
   现在的 HTML 结构有 #tel, #verifyDiv, #vcode, #password, #repassword。
   这跟截图基本一致。截图里的 "sys_admin" 可能是 #tel 的 value 或者 placeholder？
   不，截图里 "+086" 是一个下拉框，后面 "sys_admin" 是一个输入框。
   如果那是手机号输入框，"sys_admin" 显然不是手机号。
   
   **重要发现**: 用户截图可能不是普通的注册页面，或者是一个已经填了部分信息的页面。
   或者，那个 "+086" 和 "sys_admin" 是手机号输入框的样式变种？
   
   不管怎样，目前的任务是样式对齐。
*/

/* 修复 Bootstrap 带来的额外边距 */
.form-group {
    margin-bottom: 15px;
}

/* 验证码行布局修复 */
.yanzhengma_box {
    width: 360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.security_code {
    width: auto !important;
    padding: 0 !important;
}
.get_verification_code {
    width: auto !important;
    padding: 0 !important;
}
.info_vcode {
    width: auto !important;
}
.info_vcode input {
    width: 200px !important;
}
.info_getcode a {
    width: 140px !important;
    margin-left: 20px;
}

/* 隐藏不必要的元素 */
.login_content .registered_urban {
    display: none; /* 暂时隐藏没用的 */
}
