

    .auth-wrap {
      width: 60%;margin: 10vh 20%;
    }

    .auth-brand {
      text-align: center;
      margin-bottom: 20px;
    }
    .auth-brand img{height: 50px;margin: auto;}
    .auth-brand-text {
      font-size: 36px;
      font-weight: 900;
      letter-spacing: 2px;
      line-height: 1;
    }

    .auth-sub {
      text-align: center;
      font-size: 20px;
      font-weight: 700;
      letter-spacing: 2px;
      color: #111;
      margin: 0 0 36px;
    }

    .auth-tabs {
      display: flex;
      justify-content: center;
      gap: 56px;
      margin-bottom: 40px;
    }
    .auth-tab {
      font-size: 15px;
      font-weight: 400;
      color: #bbb;
      background: none;
      border: none;
      padding: 0 0 6px;
      cursor: pointer;
      letter-spacing: 2px;
      position: relative;
      transition: color .2s;
    }
    .auth-tab.is-active {
      font-weight: 700;
      color: #111;
    }
    .auth-tab.is-active::after {
      content: "";
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 2px;
      /*background: #111;*/
    }

    .auth-panel { display: none; }
    .auth-panel.is-active { display: block; }

    .field-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      column-gap: 80px;
      row-gap: 0;
    }
    .field-grid--single {
      max-width: 680px;
      margin: 0 auto;
      grid-template-columns: 1fr;
    }

    .field {
      position: relative;
      display: flex;
      align-items: center;
      border-bottom: 1px solid #000000;
      margin-bottom: 32px;
      transition: border-color .2s;
    }
    .field:focus-within {
      border-bottom-color: #111;
    }
    .field input {
      flex: 1;
      border: none;
      outline: none;
      background: transparent;
      font-family: inherit;
      font-size: 14px;
      color: #111;
      padding: 10px 0;
      letter-spacing: 1px;
    }
    .field input::placeholder {
      color: #999;
      font-weight: 400;
    }

    .field-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-left: 8px;
      color: #333;
    }
    .field-icon svg { display: block; }

    .pwd-toggle {
      display: flex;
      gap: 4px;
      flex-shrink: 0;
      margin-left: 8px;
    }
    .pwd-btn {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: #333;
  display: inline-flex;
  align-items: center;
  transition: color .2s;
  flex-shrink: 0;
  margin-left: 8px;
}
.pwd-btn:hover { color: #111; }

/* 默认隐藏睁眼图标，显示闭眼图标 */
.pwd-btn .ico-eye { display: none; }
.pwd-btn .ico-eye-off { display: inline; }

/* 激活状态：显示睁眼，隐藏闭眼 */
.pwd-btn.is-active .ico-eye { display: inline; }
.pwd-btn.is-active .ico-eye-off { display: none; }
    .btn-area {
      text-align: center;
      margin-top: 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }
    .btn-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 180px;
      padding: 11px 40px;
      border-radius: 999px;
      border: 1.5px solid #111;
      background: transparent;
      font-family: inherit;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 3px;
      color: #111;
      cursor: pointer;
      transition: background .2s, color .2s;
      text-decoration: none;
    }
    .btn-pill:hover {
      background: #111;
      color: #fff;
    }
    .btn-pill--ghost {
      border-color: #ccc;
      color: #666;
    }
    .btn-pill--ghost:hover {
      background: #f5f5f5;
      color: #111;
      border-color: #999;
    }

    .form-msg {
      text-align: center;
      font-size: 13px;
      min-height: 20px;
      margin-top: 12px;
      letter-spacing: 1px;
      color: #c00;
    }
    .form-msg.ok { color: #3a7c3a; }

    @media (max-width: 640px) {
      .field-grid { grid-template-columns: 1fr; column-gap: 0; }
      .auth-brand-text { font-size: 28px; }
      .btn-pill { min-width: 160px; padding: 12px 32px; }
    }

input, textarea {
  ime-mode: auto !important;          /* 恢复输入法 */
  -webkit-ime-mode: auto !important;
  -moz-ime-mode: auto !important;
  -ms-ime-mode: auto !important;
}

input, textarea {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
}