/* Source: user/pass.html inline style 1 */
.user-reset-page {
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(30, 158, 255, 0.2), transparent 30%),
        linear-gradient(180deg, #f6f9fd 0%, #edf3f9 100%);
      overflow-x: clip;
    }

    .user-reset-page,
    .user-reset-page *,
    .user-reset-page *::before,
    .user-reset-page *::after {
      box-sizing: border-box;
    }

    .user-reset-shell {
      width: min(520px, calc(100% - 30px));
      margin: 0 auto;
      padding: 36px 0 48px;
    }

    .user-reset-topbar {
      width: min(860px, calc(100% - 30px));
      min-height: 72px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .user-reset-logo img {
      display: block;
      height: 28px;
      width: auto;
    }

    .user-reset-links {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
    }

    .user-reset-links a {
      max-width: 100%;
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border-radius: 999px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      background: rgba(255, 255, 255, 0.86);
      color: #172132;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
    }

    .user-reset-card {
      position: relative;
      padding: 24px;
      border: 1px solid rgba(15, 23, 42, 0.08);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 24px 40px rgba(15, 23, 42, 0.08);
    }

    .user-reset-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(30, 158, 255, 0.16), transparent 34%);
      pointer-events: none;
    }

    .user-reset-card > * {
      position: relative;
      z-index: 1;
    }

    .user-reset-kicker {
      margin: 0 0 10px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.16em;
      color: #6c7b90;
    }

    .user-reset-title {
      margin: 0;
      font-size: 30px;
      line-height: 1.1;
      font-weight: 800;
      color: #172132;
    }

    .user-reset-desc {
      margin: 12px 0 0;
      font-size: 14px;
      line-height: 1.75;
      color: #5f6e82;
    }

    .user-reset-form {
      display: grid;
      gap: 16px;
      margin-top: 24px;
    }

    .user-reset-field {
      display: grid;
      gap: 8px;
    }

    .user-reset-label {
      font-size: 13px;
      font-weight: 800;
      color: #172132;
    }

    .user-reset-input {
      width: 100%;
      min-height: 54px;
      padding: 0 16px;
      border: 1px solid rgba(15, 23, 42, 0.1);
      border-radius: 18px;
      background: #f8fbff;
      color: #172132;
      box-sizing: border-box;
      outline: none;
    }

    .user-reset-input:focus {
      border-color: rgba(30, 158, 255, 0.34);
      background: #fff;
      box-shadow: 0 0 0 4px rgba(30, 158, 255, 0.08);
    }

    .user-reset-code-row {
      display: flex;
      gap: 10px;
      align-items: center;
      min-width: 0;
    }

    .user-reset-code-row .user-reset-input {
      flex: 1 1 auto;
      min-width: 0;
    }

    .user-reset-button,
    .user-reset-button-secondary {
      min-height: 52px;
      border-radius: 18px;
      border: 0;
      padding: 0 18px;
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
    }

    .user-reset-button {
      background: linear-gradient(135deg, #1e88ff 0%, #1168da 100%);
      color: #fff;
      box-shadow: 0 18px 32px rgba(30, 136, 255, 0.22);
    }

    .user-reset-button-secondary {
      background: rgba(30, 158, 255, 0.1);
      color: #1e88ff;
      white-space: nowrap;
    }

    .user-reset-actions {
      display: grid;
      gap: 12px;
      margin-top: 8px;
    }

    .user-reset-note {
      margin-top: 18px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(15, 23, 42, 0.05);
      color: #6b7280;
      font-size: 13px;
      line-height: 1.75;
    }

    .user-reset-modal {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(13, 20, 31, 0.56);
      z-index: 1400;
    }

    .user-reset-modal.is-open {
      display: flex;
    }

    .user-reset-modal-card {
      width: min(420px, 100%);
      padding: 22px;
      border-radius: 24px;
      background: #fff;
      box-shadow: 0 24px 40px rgba(15, 23, 42, 0.18);
    }

    .user-reset-captcha {
      height: 76px;
      border-radius: 16px;
      background: #eef3f9 center / cover no-repeat;
      margin: 14px 0 16px;
      cursor: pointer;
    }

    .user-reset-modal-actions {
      display: flex;
      gap: 10px;
      margin-top: 14px;
      min-width: 0;
    }

    .user-reset-modal-actions button {
      flex: 1 1 0;
    }

    @media (max-width: 760px) {
      .user-reset-topbar,
      .user-reset-shell {
        width: calc(100% - 24px);
      }

      .user-reset-topbar {
        min-height: 64px;
      }

      .user-reset-card,
      .user-reset-modal-card {
        padding: 18px;
        border-radius: 24px;
      }

      .user-reset-title {
        font-size: 24px;
      }

      .user-reset-code-row {
        flex-direction: column;
        align-items: stretch;
      }
    }
