/* =====================
   Base & Page
   ===================== */
body { background: #f1f5f9; font-size: 15px; }

/* =====================
   Top Nav
   ===================== */
.menu-group.dark {
  background: #1e293b;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
}
.menu-group.dark .menu-bar a {
  color: #cbd5e1;
  transition: color 0.15s, background 0.15s;
}
.menu-group.dark .menu-bar a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.08);
}
.menu-group.dark .menu-bar .static-link { color: #94a3b8 !important; }
.menu-group.dark .menu-group-left,
.menu-group.dark .menu-group-right { background: #1e293b; display: flex; align-items: center; }
.menu-group.dark .menu-bar,
.menu-group.dark .menu-bar.primary,
.menu-group.dark ul.menu-bar { background: #1e293b !important; }

/* =====================
   Main Content
   ===================== */
.main-content { padding-top: 32px; }
.mcwrap { max-width: 1100px; margin: 0 auto; padding: 0 16px; }

/* =====================
   Forms & Inputs
   ===================== */
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
select {
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  padding: 8px 10px;
  font-size: 14px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus,
select:focus {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.12);
  outline: none;
}
label { font-weight: 500; font-size: 14px; color: #374151; }

/* =====================
   Buttons
   ===================== */
.button {
  border-radius: 6px !important;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.15s, box-shadow 0.15s, transform 0.1s;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}
.button:hover {
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}
.button:active { transform: translateY(0); box-shadow: none; }
.button.success { background: #16a34a; }
.button.success:hover { background: #15803d; }
.button.alert { background: #dc2626; }
.button.alert:hover { background: #b91c1c; }

/* =====================
   Bills Table
   ===================== */
.bills-list-table {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  overflow: hidden;
}
.bills-list-table thead tr {
  background: #f8fafc;
  border-bottom: 2px solid #e2e8f0;
}
.bills-list-table thead th {
  color: #475569;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
}
.bills-list-table tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.1s;
}
.bills-list-table tbody tr:nth-child(even) { background: #f8fafc; }
.bills-list-table tbody tr:hover { background: #eff6ff; }
.bills-list-table td { padding: 12px 16px; color: #334155; }

/* =====================
   Bill Print / Label Fields
   ===================== */
.bill-label-print-fields {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
}

/* =====================
   Color Swatches
   ===================== */
.swatch { border-radius: 50%; border: 2px solid #e2e8f0; }
.selectedcolor .swatch {
  border-color: #1e293b;
  box-shadow: 0 0 0 2px rgba(37,99,235,0.3);
}

/* =====================
   Headings
   ===================== */
h1 { color: #1e293b; font-weight: 700; }
h3 { color: #334155; font-weight: 600; }
h4 { color: #475569; font-weight: 600; }

/* =====================
   Nav Logo
   ===================== */
.nav-logo-item { display: flex !important; align-items: center !important; }
.nav-logo-item > a { display: flex !important; align-items: center !important; padding: 0 10px !important; }
.nav-logo-img { width: 20px !important; height: 20px !important; display: block !important; border-radius: 2px; flex-shrink: 0; }

/* =====================
   Sortable Table Columns
   ===================== */
.sortable-col {
  cursor: pointer;
  user-select: none;
}
.sortable-col:hover {
  background: #e9f0fb;
  color: #1e293b;
}
.sort-icon {
  font-size: 11px;
  opacity: 0.7;
  margin-left: 3px;
}

/* =====================
   Bill Action Buttons (inline row)
   ===================== */
.bill-actions {
  display: flex;
  gap: 6px;
  justify-content: flex-end;
  flex-wrap: nowrap;
}
.bill-actions .button {
  margin-bottom: 0;
  white-space: nowrap;
}

/* =====================
   Forgot Password Toggle
   ===================== */
.forgot-toggle {
  color: #2563eb;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  background: none;
  border: none;
  padding: 0;
  display: inline-block;
  margin-top: 8px;
}
.forgot-toggle:hover { text-decoration: underline; color: #1d4ed8; }

/* =====================
   Login + Status Landing
   ===================== */
.auth-shell {
  --auth-bg: #f1f5f9;
  --auth-bg-2: #f8fafc;
  --auth-card: #ffffff;
  --auth-ink: #1e293b;
  --auth-ink-2: #334155;
  --auth-ink-3: #475569;
  --auth-muted: #64748b;
  --auth-muted-2: #94a3b8;
  --auth-line: #cbd5e1;
  --auth-line-2: #e2e8f0;
  --auth-accent: #2563eb;
  --auth-accent-2: #1d4ed8;
  --auth-success: #16a34a;
  --auth-alert: #dc2626;
  min-height: 100vh;
  margin: -32px calc(50% - 50vw) 0;
  padding: 28px;
  color: var(--auth-ink);
  background:
    radial-gradient(circle at 16% 12%, rgba(37, 99, 235, 0.16), transparent 28%),
    radial-gradient(circle at 84% 4%, rgba(22, 163, 74, 0.12), transparent 24%),
    linear-gradient(135deg, #e2e8f0 0%, var(--auth-bg) 42%, #eef2f7 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-window {
  width: min(1180px, 100%);
  min-height: min(780px, calc(100vh - 56px));
  background: var(--auth-bg);
  border: 1px solid rgba(148, 163, 184, 0.5);
  border-radius: 24px;
  box-shadow: 0 28px 90px rgba(15, 23, 42, 0.24);
  overflow: hidden;
}

.auth-titlebar {
  height: 46px;
  padding: 0 14px;
  background: #0f172a;
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-titlebrand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
}

.auth-titlebrand img {
  width: 22px;
  height: 22px;
  border-radius: 5px;
}

.auth-window-controls {
  display: flex;
  gap: 8px;
}

.auth-window-controls span {
  width: 12px;
  height: 12px;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 50%;
  opacity: 0.75;
}

.auth-window-controls .close {
  border-color: rgba(248, 113, 113, 0.95);
  background: rgba(248, 113, 113, 0.28);
}

.auth-body {
  min-height: calc(min(780px, 100vh - 56px) - 46px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.auth-main {
  padding: clamp(28px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-topline,
.auth-meta,
.auth-links,
.auth-button-row,
.status-actions {
  display: flex;
  align-items: center;
}

.auth-topline,
.auth-meta,
.auth-links {
  justify-content: space-between;
  gap: 16px;
}

.auth-kicker {
  color: var(--auth-accent-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.auth-pill {
  padding: 7px 11px;
  border: 1px solid var(--auth-line-2);
  border-radius: 999px;
  color: var(--auth-ink-3);
  background: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 700;
}

.auth-dot,
.status-light {
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 999px;
  background: var(--auth-success);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.14);
  display: inline-block;
}

.auth-hero {
  margin: 24px 0 24px;
}

.auth-hero h1,
.status-hero h1 {
  margin: 0;
  color: var(--auth-ink);
  font-size: clamp(44px, 6vw, 74px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.auth-hero p,
.status-hero p,
.status-card p,
.status-note {
  color: var(--auth-muted);
  font-size: 18px;
  line-height: 1.55;
}

.auth-card {
  max-width: 520px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 22px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}

.auth-card h3,
.status-card h3 {
  margin: 0 0 18px;
  color: var(--auth-ink);
  font-weight: 800;
}

.auth-bar {
  width: 4px;
  height: 21px;
  margin-right: 10px;
  border-radius: 999px;
  background: var(--auth-accent);
  display: inline-block;
  vertical-align: -4px;
}

.auth-label {
  color: var(--auth-ink-2);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.auth-label input {
  height: 48px;
  margin-top: 7px;
  border: 1px solid var(--auth-line);
  border-radius: 13px;
  background: var(--auth-bg-2);
  color: var(--auth-ink);
  font-size: 15px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.auth-label input:focus {
  border-color: var(--auth-accent);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.13);
}

.auth-card .auth-button,
.status-actions .auth-button {
  min-width: 135px;
  margin: 2px 0 0;
  border-radius: 999px;
  font-weight: 900;
}

.auth-forgot {
  margin-top: 12px;
}

.auth-reset {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--auth-line-2);
}

.auth-reset h4 {
  margin-top: 0;
}

.auth-button-row {
  gap: 14px;
  flex-wrap: wrap;
}

.auth-cancel,
.status-support,
.auth-links a {
  color: var(--auth-accent);
  font-weight: 800;
  text-decoration: none;
}

.auth-cancel:hover,
.status-support:hover,
.auth-links a:hover {
  color: var(--auth-accent-2);
  text-decoration: underline;
}

.auth-message {
  margin: 12px 0 0;
  font-weight: 700;
}

.auth-message.ok {
  color: var(--auth-success);
}

.auth-message.err {
  color: var(--auth-alert);
}

.auth-helper,
.auth-meta,
.auth-links {
  max-width: 520px;
}

.auth-helper {
  margin: 14px 0 0;
  color: var(--auth-muted);
  font-size: 13px;
  text-align: center;
}

.auth-meta,
.auth-links {
  margin-top: 16px;
  color: var(--auth-muted);
  font-size: 12px;
}

.auth-links {
  padding-top: 12px;
  border-top: 1px solid var(--auth-line-2);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.auth-links span:last-child {
  display: flex;
  gap: 14px;
}

.auth-brand-panel {
  padding: clamp(28px, 5vw, 58px);
  color: #e2e8f0;
  background:
    linear-gradient(rgba(15, 23, 42, 0.68), rgba(15, 23, 42, 0.92)),
    url('/assets/graphics/prestige-logo.png') center 44% / min(74%, 520px) no-repeat,
    linear-gradient(135deg, #0f172a 0%, #1e3a8a 56%, #0f172a 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.auth-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.auth-brand-head img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.auth-brand-copy h2 {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.auth-brand-copy p {
  max-width: 450px;
  color: #cbd5e1;
  font-size: 17px;
  line-height: 1.55;
}

.auth-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.auth-stat-grid div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid rgba(226, 232, 240, 0.18);
  border-radius: 18px;
  background: rgba(15, 23, 42, 0.48);
}

.auth-stat-grid strong,
.auth-stat-grid span {
  display: block;
}

.auth-stat-grid strong {
  color: #ffffff;
  font-size: 24px;
}

.auth-stat-grid span {
  margin-top: 6px;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.status-window {
  max-width: 1120px;
  min-height: auto;
}

.status-body {
  padding: clamp(28px, 5vw, 58px);
}

.status-hero {
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.status-hero h1 {
  margin-top: 8px;
}

.status-summary {
  min-width: 190px;
  padding: 18px;
  border: 1px solid rgba(22, 163, 74, 0.28);
  border-radius: 18px;
  background: rgba(22, 163, 74, 0.08);
}

.status-summary strong,
.status-summary small {
  display: block;
}

.status-summary strong {
  color: #166534;
  font-size: 20px;
}

.status-summary small {
  margin-top: 7px;
  color: var(--auth-muted);
}

.status-summary.is-degraded {
  border-color: rgba(220, 38, 38, 0.28);
  background: rgba(220, 38, 38, 0.08);
}

.status-summary.is-degraded .status-light {
  background: var(--auth-alert);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.14);
}

.status-summary.is-degraded strong {
  color: #991b1b;
}

.status-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.status-card {
  padding: 22px;
  border: 1px solid rgba(203, 213, 225, 0.92);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.status-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.status-badge {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.1);
  color: var(--auth-accent-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-badge.ok {
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
}

.status-badge.warn {
  background: rgba(245, 158, 11, 0.16);
  color: #92400e;
}

.status-actions {
  margin-top: 24px;
  gap: 18px;
  flex-wrap: wrap;
}

.status-note {
  margin: 18px 0 0;
  font-size: 14px;
}

@media (max-width: 920px) {
  .auth-shell {
    padding: 14px;
  }

  .auth-body,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .auth-brand-panel {
    min-height: 420px;
  }

  .status-hero {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .auth-shell {
    margin-top: -20px;
    padding: 0;
  }

  .auth-window {
    min-height: 100vh;
    border-radius: 0;
  }

  .auth-main,
  .status-body {
    padding: 24px 18px;
  }

  .auth-topline,
  .auth-meta,
  .auth-links {
    align-items: flex-start;
    flex-direction: column;
  }

  .auth-hero h1,
  .status-hero h1 {
    font-size: 42px;
  }

  .auth-card {
    padding: 20px;
  }

  .auth-stat-grid {
    grid-template-columns: 1fr;
  }
}

/* =====================
   Prestige Moving Login Design
   Source: C:\Users\R\Downloads\Prestige Moving Login.html
   ===================== */
.pm-login-desktop {
  --pm-login-bg: #f1f5f9;
  --pm-login-bg-2: #f8fafc;
  --pm-login-card: #ffffff;
  --pm-login-ink: #1e293b;
  --pm-login-ink-2: #334155;
  --pm-login-ink-3: #475569;
  --pm-login-muted: #64748b;
  --pm-login-muted-2: #94a3b8;
  --pm-login-line: #cbd5e1;
  --pm-login-line-2: #e2e8f0;
  --pm-login-accent: #2563eb;
  --pm-login-accent-2: #1d4ed8;
  --pm-login-success: #16a34a;
  --pm-login-success-2: #15803d;
  --pm-login-alert: #dc2626;
  --pm-login-label-ink: #374151;
  min-height: 100vh;
  margin: -32px calc(50% - 50vw) 0;
  padding: 0;
  background: var(--pm-login-bg);
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  color: var(--pm-login-ink-2);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.pm-login-win {
  width: 100%;
  min-height: 100vh;
  background: var(--pm-login-bg);
  border-radius: 0;
  color: var(--pm-login-ink-2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: none;
}

.pm-login-titlebar {
  height: 52px;
  flex-shrink: 0;
  background: #1e293b;
  color: #cbd5e1;
  display: flex;
  align-items: stretch;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  user-select: none;
}

.pm-login-tb-brand {
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.pm-login-tb-brand img {
  width: 20px;
  height: 20px;
  border-radius: 2px;
  display: block;
}

.pm-login-tb-brand .name {
  color: #e2e8f0;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
}

.pm-login-tb-title {
  flex: 1;
}

.pm-login-body {
  min-height: 0;
  flex: 1;
  background: var(--pm-login-bg);
  display: flex;
}

.pm-login-main-content {
  padding-top: 32px;
  flex: 1;
  overflow: auto;
}

.pm-login-mcwrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

.pm-login-topline {
  max-width: 520px;
  margin: 0 auto 28px;
  color: var(--pm-login-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pm-login-topline .pill {
  padding: 4px 10px;
  border: 1px solid var(--pm-login-line-2);
  border-radius: 999px;
  background: #fff;
  color: var(--pm-login-ink-3);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: .02em;
  text-transform: none;
}

.pm-login-topline .led,
.pm-login-meta .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pm-login-success);
  box-shadow: 0 0 0 2px rgba(22,163,74,.18);
  display: inline-block;
}

.pm-login-hero {
  max-width: 520px;
  margin: 0 auto 24px;
  text-align: center;
}

.pm-login-hero .eyebrow {
  margin-bottom: 14px;
  color: var(--pm-login-accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.pm-login-hero .eyebrow::before,
.pm-login-hero .eyebrow::after {
  width: 18px;
  height: 1px;
  background: var(--pm-login-accent);
  content: "";
  opacity: .4;
}

.pm-login-hero h1.page {
  margin: 0 0 12px;
  color: var(--pm-login-ink);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.015em;
}

.pm-login-hero h1.page em {
  margin-top: 4px;
  color: var(--pm-login-ink-3);
  display: block;
  font-size: .7em;
  font-style: normal;
  font-weight: 500;
  letter-spacing: -.005em;
}

.pm-login-hero .lede {
  max-width: 46ch;
  margin: 0 auto;
  color: var(--pm-login-ink-3);
  font-size: 15px;
  line-height: 1.55;
}

.pm-login-grid-block {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.pm-login-card {
  width: 100%;
  max-width: 520px;
  padding: 36px 40px 32px;
  border: 1px solid var(--pm-login-line-2);
  border-radius: 10px;
  background: var(--pm-login-card);
  box-shadow: 0 1px 3px rgba(0,0,0,.06), 0 8px 24px -12px rgba(15,23,42,.12);
}

.pm-login-card h3 {
  margin: 0 0 22px;
  color: var(--pm-login-ink-2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -.005em;
}

.pm-login-card h3 .bar {
  width: 4px;
  height: 20px;
  border-radius: 2px;
  background: var(--pm-login-accent);
}

.pm-login-card form .lbl {
  margin-bottom: 14px;
  color: var(--pm-login-label-ink);
  display: block;
  font-size: 14px;
  font-weight: 500;
}

.pm-login-card form .lbl > .lbl-text {
  margin-bottom: 6px;
  display: block;
}

.pm-login-card form .lbl > input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--pm-login-line);
  border-radius: 4px;
  background: #fff;
  color: var(--pm-login-ink);
  display: block;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}

.pm-login-card form .lbl > input::placeholder {
  color: var(--pm-login-muted-2);
}

.pm-login-card form .lbl > input:hover {
  border-color: #94a3b8;
}

.pm-login-card form .lbl > input:focus {
  border-color: var(--pm-login-accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}

.pm-login-card .button {
  padding: 11px 22px;
  border: 0;
  border-radius: 6px;
  background: var(--pm-login-accent);
  color: #fff;
  appearance: none;
  cursor: default;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .01em;
  box-shadow: 0 1px 2px rgba(0,0,0,.08);
  transition: background .15s, box-shadow .15s, transform .1s;
}

.pm-login-card .button:hover {
  background: var(--pm-login-accent-2);
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
  transform: translateY(-1px);
}

.pm-login-card .button:active {
  box-shadow: none;
  transform: translateY(0);
}

.pm-login-card .button.success {
  background: var(--pm-login-success);
}

.pm-login-card .button.success:hover {
  background: var(--pm-login-success-2);
}

.pm-login-card .forgot-toggle {
  margin-top: 8px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--pm-login-accent);
  cursor: default;
  display: inline-block;
  font-size: 14px;
  text-decoration: none;
}

.pm-login-card .forgot-toggle:hover {
  color: var(--pm-login-accent-2);
  text-decoration: underline;
}

.pm-login-card .reset {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--pm-login-line-2);
}

.pm-login-card .reset h4 {
  margin: 0 0 14px;
  color: var(--pm-login-ink-3);
  font-size: 15px;
  font-weight: 600;
}

.pm-login-card .reset .cancel {
  margin-left: 12px;
  color: var(--pm-login-muted);
  cursor: default;
  font-size: 13px;
  text-decoration: none;
}

.pm-login-card .reset .cancel:hover {
  color: var(--pm-login-ink-2);
  text-decoration: underline;
}

.pm-login-card .msg {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
}

.pm-login-card .msg.ok {
  color: var(--pm-login-success);
}

.pm-login-card .msg.err {
  color: var(--pm-login-alert);
}

.pm-login-helper {
  max-width: 520px;
  margin: 14px auto 0;
  color: var(--pm-login-muted);
  font-size: 13px;
  text-align: center;
}

.pm-login-helper span {
  color: var(--pm-login-ink-3);
}

.pm-login-meta {
  max-width: 520px;
  margin: 18px auto 0;
  padding: 0 4px;
  color: var(--pm-login-muted);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.pm-login-meta .dot {
  margin-right: 6px;
}

.pm-login-meta.links {
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid var(--pm-login-line-2);
}

.pm-login-meta.links > span:first-child {
  color: var(--pm-login-muted-2);
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.pm-login-meta.links > span:last-child {
  display: flex;
  gap: 14px;
}

.pm-login-meta a {
  color: var(--pm-login-muted);
  text-decoration: none;
}

.pm-login-meta a:hover {
  color: var(--pm-login-ink-2);
}

@media (max-width: 760px) {
  .pm-login-desktop {
    padding: 0;
  }

  .pm-login-win {
    min-height: 100vh;
    border-radius: 0;
  }

  .pm-login-main-content {
    padding-top: 24px;
  }

  .pm-login-card {
    padding: 28px 24px;
  }

  .pm-login-topline,
  .pm-login-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}
