@charset "utf-8";
/* 万亿圆梦 - 登录页专属样式 */

/* 验证码药丸(显示随机码) */
.captcha {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-left: 10px;
  padding: 4px 12px;
  border-radius: 12px;
  background: #ffeadc;
  color: #d01d21;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 2px;
  font-family: Arial, "PingFang SC", sans-serif;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* 新用户注册链接行 */
.register-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  height: 48.5px;
}
.register-link a {
  color: #d01d21;
  font-size: 15px;
  line-height: 22.5px;
}
.register-link .arrow { width: 16px; height: 16px; margin-left: 6px; }
.register-link .arrow img { width: 16px; height: 16px; }

/* 在线客服 / APP 下载 行（左对齐 + 组间 39px，与设计一致） */
.info-row {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
  margin-bottom: 0;
}
.info-row .grp {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.info-row .grp .ico { width: 20px; height: 20px; }
.info-row .grp .ico img { width: 20px; height: 20px; }
.info-row .grp span {
  margin-left: 8px;
  color: #421c16;
  font-size: 15px;
  line-height: 22.5px;
  white-space: nowrap;
}
/* 「APP 下载」已由 <span> 改为 <a>（真实下载链接）。
   .grp 的布局样式是按 class 选的、不依赖标签名，故排版不受影响；
   但 <a> 自带下划线与浏览器默认链接色，必须显式清掉，否则与旁边的
   「在线客服」（仍是 span）看起来不是一组。 */
.info-row a.grp { text-decoration: none; color: inherit; }
.info-row .sep { width: 1px; height: 20px; background: #f0e6de; margin: 0 39px; }

/* 卡片内各区块间距 */
.login-card .register-link { margin-top: 2px; }
.login-card .info-row { margin-top: 6px; }
.login-card .btn-cta { margin-top: 20px; }
