/* 登录层/账户/关于 · v2 增补样式（其余沿用 app.css） */

/* 登录卡切换标签 */
.gate-tabs {
  display: flex;
  gap: 6px;
  margin: 14px 0 12px;
}
.gtab {
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: transparent;
  color: #9ca3af;
  font-size: 13.5px;
  padding: 8px 0;
  border-radius: 6px;
  cursor: pointer;
}
.gtab.active {
  background: #2f6df0;
  border-color: #2f6df0;
  color: #fff;
  font-weight: 700;
}

/* 图形码/发码行 */
.cap-row {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  align-items: stretch;
}
.cap-row .gate-input {
  flex: 1;
  margin-bottom: 0;
}
.captcha-img {
  height: 42px;
  border-radius: 6px;
  cursor: pointer;
  background: #eef1f6;
  flex: 0 0 auto;
}
.send-btn {
  flex: 0 0 auto;
  border: 1px solid #2f6df0;
  background: transparent;
  color: #6ea0ff;
  border-radius: 6px;
  font-size: 13px;
  padding: 0 14px;
  cursor: pointer;
}
.send-btn:disabled {
  opacity: 0.55;
  cursor: default;
}

/* 登录卡辅助文案 */
.gate-desc2 {
  font-size: 12px;
  color: #7b8494;
  line-height: 1.6;
  margin-top: 10px;
  text-align: left;
}
.gate-btn-link {
  display: block;
  text-align: center;
  text-decoration: none;
}
.gate-btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #aab3c2;
  margin-top: 8px;
}
.gate-btn.ghost:hover {
  border-color: #2f6df0;
  color: #fff;
}
.gate-foot-btn {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 12px;
  margin-top: 14px;
  cursor: pointer;
  text-decoration: underline;
}

/* 设置 · 账户行 */
.account-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0 2px;
}
.account-name {
  font-size: 14px;
  color: #e5e9f0;
  word-break: break-all;
}
.credits-btn.ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #aab3c2;
}
.credits-btn.ghost:hover {
  border-color: #2f6df0;
  color: #fff;
}

/* 设置 · 关于（低调：小字灰色，藏在最底部，点击展开） */
.settings-about {
  margin-top: 18px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 11.5px;
  color: #565f6e;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
.settings-about:hover {
  color: #7b8494;
}
.about-body {
  margin-top: 8px;
  font-size: 11.5px;
  color: #565f6e;
  line-height: 1.7;
  text-align: left;
}
.about-body p {
  margin: 2px 0;
}
.about-body .about-legal {
  color: #49505f;
  font-size: 11px;
}
