:root, :root[data-theme='dark'] {
  color-scheme: dark;
  --bg: #0e1012; --surface: #15181c; --surface-2: #1b1f24; --surface-3: #232830;
  --border: #272c33; --border-strong: #363d47;
  --text: #e7eaee; --muted: #98a1ac; --faint: #6a7480;
  --accent: #3b82f6; --accent-hover: #5a95f7; --accent-quiet: rgba(59, 130, 246, .16);
  --ok: #3fa467; --ok-bg: rgba(63, 164, 103, .16);
  --warn: #cf9a27; --warn-bg: rgba(207, 154, 39, .16);
  --bad: #e05545; --bad-bg: rgba(224, 85, 69, .16);
  --info: #4a90e8; --info-bg: rgba(74, 144, 232, .16);
}
:root[data-theme='light'] {
  color-scheme: light;
  --bg: #f6f7f9; --surface: #ffffff; --surface-2: #f3f5f7; --surface-3: #e9ecef;
  --border: #e4e7eb; --border-strong: #cfd4da;
  --text: #1a1d21; --muted: #5b646e; --faint: #626b74;
  --accent: #1f6fd4; --accent-hover: #1a5fb8; --accent-quiet: rgba(31, 111, 212, .1);
  --ok: #1f7a4d; --ok-bg: rgba(31, 122, 77, .1);
  --warn: #8a5d00; --warn-bg: rgba(138, 93, 0, .1);
  --bad: #c23b2b; --bad-bg: rgba(194, 59, 43, .1);
  --info: #1f6fd4; --info-bg: rgba(31, 111, 212, .1);
}

:root {
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Helvetica, Arial, sans-serif;
  --mono: ui-monospace, 'SF Mono', 'Cascadia Code', Menlo, Consolas, monospace;
  --panel-height: 52px;
  --tabs-height: 44px;
}

* { box-sizing: border-box; }
/* min-height, not height: a body pinned to one viewport makes the sticky header and tab bar
   release once the page scrolls past the first screen. */
html { height: 100%; }
body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 13px/1.5 var(--font);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
::selection { background: var(--accent); color: #fff; }
code, .mono { font-family: var(--mono); }
.muted { color: var(--muted); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

h1, h2, h3 { margin: 0; font-family: var(--font); }
h1 { font-size: 20px; font-weight: 600; letter-spacing: -.01em; }
h2 { font-size: 15px; font-weight: 600; letter-spacing: -.005em; }
h3 { font-size: 13px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }

.p-skip { position: fixed; left: 12px; top: -100px; z-index: 100; padding: 10px 16px; background: var(--surface); color: var(--text); border: 1px solid var(--accent); border-radius: 6px; }
.p-skip:focus { top: 8px; }

.p-header { position: sticky; top: 0; z-index: 40; height: var(--panel-height); background: var(--bg); border-bottom: 1px solid var(--border); }
.p-header-inner { height: 100%; max-width: 1180px; margin: 0 auto; padding-inline: 24px; display: flex; align-items: center; gap: 10px; }
.p-brand { display: inline-flex; align-items: baseline; gap: 6px; font: 650 15px/1 var(--font); letter-spacing: -.01em; color: var(--text); flex-shrink: 0; }
.p-brand-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }
.p-crumb { color: var(--faint); }
.p-crumb-current { color: var(--muted); }
.p-header-actions { margin-left: auto; display: flex; align-items: center; gap: 6px; }

.p-tabs { position: sticky; top: var(--panel-height); z-index: 39; height: var(--tabs-height); background: var(--bg); border-bottom: 1px solid var(--border); overflow-x: auto; }
.p-tabs-inner { height: 100%; max-width: 1180px; margin: 0 auto; padding-inline: 24px; display: flex; align-items: stretch; gap: 4px; }
.p-tab { display: inline-flex; align-items: center; gap: 7px; height: 100%; padding: 0 4px; margin-right: 20px; color: var(--muted); font-size: 13px; font-weight: 500; border-bottom: 2px solid transparent; white-space: nowrap; }
.p-tab:hover { color: var(--text); text-decoration: none; }
.p-tab[aria-current='page'] { color: var(--text); border-bottom-color: var(--accent); font-weight: 600; }
.p-tab[aria-disabled='true'] { color: var(--faint); cursor: default; }
.p-tab-soon { font-size: 10px; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--faint); background: var(--surface-2); border: 1px solid var(--border); border-radius: 999px; padding: 1px 6px; }

.p-theme { display: inline-grid; place-items: center; width: 30px; height: 30px; padding: 0; background: transparent; border: 1px solid transparent; color: var(--muted); border-radius: 6px; cursor: pointer; }
.p-theme:hover { background: var(--surface-2); color: var(--text); }
.p-theme svg { width: 16px; height: 16px; }
.p-theme .to-dark { display: none; }
:root[data-theme='light'] .p-theme .to-light { display: none; }
:root[data-theme='light'] .p-theme .to-dark { display: inline; }

.p-main { max-width: 1180px; margin: 0 auto; padding: 28px 24px 64px; }

.p-page-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; padding-bottom: 18px; margin-bottom: 22px; border-bottom: 1px solid var(--border); }
.p-page-head-text p { max-width: 62ch; margin: 5px 0 0; color: var(--muted); font-size: 13px; }
.p-page-head-meta { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.p-page-head-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.p-back { display: inline-flex; align-items: center; gap: 5px; margin-bottom: 10px; color: var(--muted); font-size: 12px; }
.p-back:hover { color: var(--text); text-decoration: none; }
.p-back svg { width: 12px; height: 12px; }

.p-status { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--text); }
.p-status-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.p-status[data-tone='ok'] .p-status-dot { background: var(--ok); box-shadow: 0 0 0 3px var(--ok-bg); }
.p-status[data-tone='info'] .p-status-dot { background: var(--info); box-shadow: 0 0 0 3px var(--info-bg); }
.p-status[data-tone='warn'] .p-status-dot { background: var(--warn); box-shadow: 0 0 0 3px var(--warn-bg); }
.p-status[data-tone='bad'] .p-status-dot { background: var(--bad); box-shadow: 0 0 0 3px var(--bad-bg); }
.p-status[data-tone='muted'] .p-status-dot { background: var(--faint); }

.p-notice { display: flex; gap: 10px; padding: 11px 14px; margin: 0 0 12px; background: var(--info-bg); border: 1px solid color-mix(in srgb, var(--info) 38%, var(--border)); border-radius: 8px; font-size: 12.5px; }
.p-notice[data-tone='bad'] { background: var(--bad-bg); border-color: color-mix(in srgb, var(--bad) 38%, var(--border)); }
.p-notice[data-tone='warn'] { background: var(--warn-bg); border-color: color-mix(in srgb, var(--warn) 38%, var(--border)); }
.p-notice strong { display: block; font-size: 13px; margin-bottom: 2px; }
.p-notice p { margin: 0; color: var(--muted); }

.p-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr)); margin: 0 0 28px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface); overflow: hidden; }
.p-stat { padding: 16px 20px; border-left: 1px solid var(--border); }
.p-stat:first-child { border-left: 0; }
.p-stat dt { color: var(--muted); font-size: 11.5px; }
.p-stat dd { margin: 6px 0 0; font-size: 22px; font-weight: 600; letter-spacing: -.02em; }
.p-stat dd[data-tone='ok'] { color: var(--ok); }
.p-stat dd[data-tone='warn'] { color: var(--warn); }
.p-stat dd[data-tone='bad'] { color: var(--bad); }
.p-stat small { display: block; margin-top: 4px; color: var(--faint); font-size: 11px; }

.p-section-head { display: flex; align-items: center; justify-content: space-between; margin: 0 0 10px; }
.p-section-head h2 { color: var(--muted); }
.p-count { color: var(--faint); font-size: 12px; }

/* Scrolls rather than clips: a wide table (egg variables, server rows) must stay reachable
   on a narrow screen, and the radius still needs the other axis clipped. */
.p-table-wrap { position: relative; border: 1px solid var(--border); border-radius: 8px; overflow-x: auto; overflow-y: hidden; }
.p-table { width: 100%; border-collapse: collapse; }
.p-table caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.p-table th { padding: 9px 16px; text-align: left; font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .045em; color: var(--faint); border-bottom: 1px solid var(--border); background: var(--surface-2); }
.p-table td { padding: 13px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; background: var(--surface); }
.p-table tr:last-child td { border-bottom: 0; }
.p-table tbody tr:hover td { background: var(--surface-2); }
.p-table .p-cell-name { font-weight: 500; }
.p-table .p-cell-sub { margin-top: 2px; color: var(--faint); font-size: 11.5px; }
.p-table td[data-align='right'], .p-table th[data-align='right'] { text-align: right; }

.p-btn { display: inline-flex; align-items: center; justify-content: center; gap: 6px; height: 32px; padding: 0 12px; border-radius: 6px; border: 1px solid var(--border-strong); background: var(--surface); color: var(--text); font: 500 12.5px var(--font); cursor: pointer; }
.p-btn:hover { background: var(--surface-2); text-decoration: none; }
.p-btn.p-primary { background: var(--accent); border-color: var(--accent); color: #fff; }
.p-btn.p-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); }
.p-btn.p-danger { color: var(--bad); border-color: var(--border-strong); background: transparent; }
.p-btn.p-danger:hover { background: var(--bad-bg); border-color: color-mix(in srgb, var(--bad) 40%, var(--border)); }
.p-btn.p-danger:disabled { color: var(--faint); cursor: not-allowed; }
.p-btn.p-danger:disabled:hover { background: transparent; }
.p-btn.p-sm { height: 28px; padding: 0 9px; font-size: 12px; }
.p-row-actions { display: inline-flex; align-items: center; justify-content: flex-end; gap: 6px; }
.p-row-actions form { margin: 0; }
.p-row-actions .p-btn:disabled { color: var(--faint); cursor: not-allowed; }
.p-row-actions .p-btn:disabled:hover { background: var(--surface); }

/* Servers list selection: a checkbox column, a bar that appears with the first tick, and a
   tint on ticked rows. The cells ship hidden and panel-admin.js reveals them. */
.p-col-check { width: 1%; padding-right: 0; }
.p-table td.p-col-check, .p-table th.p-col-check { padding-left: 16px; }
.p-col-check input { width: 16px; height: 16px; margin: 0; accent-color: var(--accent); cursor: pointer; }
.p-table tbody tr[data-selected] td { background: var(--accent-quiet); }
.p-bulk { position: sticky; top: calc(var(--panel-height) + var(--tabs-height) + 8px); z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 10px; padding: 8px 12px; border: 1px solid color-mix(in srgb, var(--accent) 38%, var(--border)); border-radius: 8px; background: var(--surface); box-shadow: 0 6px 18px rgb(0 0 0 / .18); }
.p-bulk[hidden] { display: none; }
.p-bulk-count { font-weight: 600; }
.p-bulk-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 8px; }
.p-bulk-actions .p-btn:disabled { color: var(--faint); cursor: not-allowed; }
.p-confirm-list { margin: 12px 0 0; padding: 0 0 0 18px; color: var(--muted); font-size: 12.5px; max-height: 9.5em; overflow-y: auto; }
.p-confirm-list[hidden] { display: none; }

.p-panel { border: 1px solid var(--border); border-radius: 8px; background: var(--surface); overflow: hidden; margin-bottom: 20px; }
.p-panel-body { padding: 18px 20px; }
.p-panel-body h2 { margin-bottom: 3px; }

.p-empty { display: flex; align-items: center; gap: 14px; padding: 24px; border: 1px solid var(--border); border-radius: 8px; }
.p-empty strong { font-size: 13px; }
.p-empty p { margin: 3px 0 0; color: var(--muted); font-size: 12.5px; }
.p-empty-actions { margin-left: auto; }

.p-deflist { margin: 0; }
.p-deflist > div { display: grid; grid-template-columns: minmax(140px, .55fr) minmax(0, 1fr); gap: 14px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.p-deflist > div:last-child { border-bottom: 0; }
.p-deflist dt { color: var(--muted); font-size: 12px; }
.p-deflist dd { margin: 0; overflow-wrap: anywhere; }

.p-danger { border: 1px solid color-mix(in srgb, var(--bad) 32%, var(--border)); border-radius: 8px; overflow: hidden; }
.p-danger-head { padding: 12px 16px; background: var(--bad-bg); border-bottom: 1px solid color-mix(in srgb, var(--bad) 32%, var(--border)); }
.p-danger-head strong { color: var(--bad); font-size: 13px; }
.p-danger-body { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 16px; }
.p-danger-body p { margin: 3px 0 0; color: var(--muted); font-size: 12px; max-width: 52ch; }

.p-form { display: grid; gap: 18px; max-width: 640px; }
.p-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.p-field { display: grid; gap: 6px; }
.p-field label { font-size: 12px; font-weight: 500; color: var(--muted); }
.p-field input {
  height: 34px; padding: 0 10px; border-radius: 6px; border: 1px solid var(--border-strong);
  background: var(--surface); color: var(--text); font: 13px var(--font); font-variant-numeric: tabular-nums;
}
.p-field input:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.p-field input::placeholder { color: var(--faint); }
.p-form-hint { margin: -6px 0 0; color: var(--muted); font-size: 12px; max-width: 68ch; }

.p-install { border: 1px solid var(--border); border-radius: 8px; background: var(--surface-2); padding: 14px 16px; display: grid; grid-template-columns: minmax(0, 1fr); gap: 10px; }
.p-install > p { margin: 0; color: var(--muted); font-size: 12px; }
.p-install-row { display: flex; align-items: center; gap: 8px; }
.p-install-row pre { flex: 1; min-width: 0; margin: 0; padding: 10px 12px; overflow-x: auto; background: var(--surface); border: 1px solid var(--border); border-radius: 6px; font-size: 12px; }
.p-install-row pre code { white-space: pre; }
/* Servers list filter bar: plain GET form, so it keeps working without JavaScript. */
.p-filters { display: flex; flex-wrap: wrap; align-items: end; gap: 12px; margin-bottom: 14px; padding: 14px 16px; border: 1px solid var(--border); border-radius: 8px; background: var(--surface-2); }
.p-filters .p-field { flex: 1 1 180px; min-width: 0; gap: 5px; }
.p-filters .p-field:first-child { flex: 2 1 260px; }
.p-filters input, .p-filters select { width: 100%; height: 32px; padding: 0 10px; border: 1px solid var(--border-strong); border-radius: 6px; background: var(--surface); color: var(--text); font: 13px var(--font); }
.p-filters input:focus-visible, .p-filters select:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.p-filters-actions { display: flex; align-items: center; gap: 8px; }

/* One row per operation: what it does on the left, the control that would do it on the right. */
.p-ops { display: grid; gap: 4px; }
.p-ops-row { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 14px 0; border-top: 1px solid var(--border); }
.p-ops-row:first-child { padding-top: 0; border-top: 0; }
.p-ops-row strong { font-size: 13px; font-weight: 600; }
.p-ops-row p { margin: 3px 0 0; max-width: 62ch; color: var(--muted); font-size: 12.5px; }

/* Long verbatim text (install scripts) stays folded away until asked for. */
.p-reveal { margin-top: 14px; }
.p-reveal > summary { display: inline-flex; align-items: center; height: 30px; padding: 0 11px; border: 1px solid var(--border-strong); border-radius: 6px; color: var(--text); font-size: 12.5px; cursor: pointer; list-style: none; }
.p-reveal > summary::-webkit-details-marker { display: none; }
.p-reveal > summary:hover { background: var(--surface-2); }
.p-reveal > summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.p-reveal-less, .p-reveal[open] .p-reveal-more { display: none; }
.p-reveal[open] .p-reveal-less { display: inline; }
.p-code { margin: 12px 0 0; padding: 12px 14px; overflow-x: auto; border: 1px solid var(--border); border-radius: 6px; background: var(--surface-2); font-size: 12px; line-height: 1.6; }
.p-code code { white-space: pre; }

/* Egg import preview: what a real import would create, read out of the pasted JSON. */
.p-import-result { margin-top: 18px; padding: 16px 18px; border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--border)); border-radius: 8px; background: var(--surface-2); }
.p-import-result h3 { margin: 0 0 12px; font-size: 13px; font-weight: 600; }
.p-import-result .p-form-hint { margin-top: 12px; }
.p-import-vars { display: flex; flex-wrap: wrap; gap: 6px; margin: 12px 0 0; padding: 0; list-style: none; }
.p-import-vars li { display: inline-flex; align-items: center; gap: 6px; padding: 3px 9px; border: 1px solid var(--border-strong); border-radius: 999px; color: var(--muted); font-size: 12px; }

/* A small form that sits inline: a text field and its button (suspend reason, remove a port). */
.p-inline-form { display: inline-flex; align-items: center; gap: 8px; margin: 0; flex-wrap: wrap; }
.p-inline-form input[type='text'] { height: 32px; min-width: 220px; padding: 0 10px; border: 1px solid var(--border-strong); border-radius: 6px; background: var(--surface); color: var(--text); font: 13px var(--font); }
.p-inline-form input[type='text']:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }

/* Signed-in identity in the admin header, and the sign-in pages that have no session yet. */
.p-whoami { max-width: 22ch; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; color: var(--muted); font-size: 12.5px; }
.p-signed-out-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
@media (max-width: 560px) { .p-whoami { display: none; } }

.p-field textarea { padding: 10px 12px; border: 1px solid var(--border-strong); border-radius: 6px; background: var(--surface); color: var(--text); font: 12.5px/1.6 var(--mono, ui-monospace, SFMono-Regular, Menlo, monospace); resize: vertical; }
.p-field textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 1px; }
.p-deflist dd code + code { margin-left: 6px; }

@media (max-width: 720px) {
  .p-header-inner, .p-tabs-inner, .p-main { padding-inline: 16px; }
  .p-page-head { flex-direction: column; align-items: flex-start; }
  .p-page-head-actions { width: 100%; }
  .p-form-grid { grid-template-columns: 1fr; }
  .p-filters { flex-direction: column; align-items: stretch; }
  .p-filters .p-field, .p-filters .p-field:first-child { flex: 0 0 auto; }
  .p-ops-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .p-stats { grid-template-columns: repeat(2, 1fr); }
  .p-stat { border-bottom: 1px solid var(--border); }
  .p-stat:nth-child(2n+1) { border-left: 0; }
  .p-stat:nth-last-child(-n+2) { border-bottom: 0; }
  .p-danger-body { flex-direction: column; align-items: flex-start; }
}

/* Native dialogs keep keyboard focus within the active interaction. */
.p-dialog { width: min(480px, calc(100vw - 32px)); max-height: calc(100dvh - 32px); padding: 24px; color: var(--text); background: var(--surface); border: 1px solid var(--border-strong); border-radius: 10px; box-shadow: 0 20px 60px rgb(0 0 0 / .3); overflow: auto; }
.p-dialog::backdrop { background: rgb(0 0 0 / .6); }
.p-dialog p { overflow-wrap: anywhere; }
.p-dialog .p-field input { width: 100%; min-width: 0; font-size: 16px; }
[data-backup-row] .c-backup-name { flex-wrap: wrap; gap: 4px; }
[data-backup-name] { overflow-wrap: anywhere; min-width: 0; }
.p-schedule-dialog { width: min(620px, calc(100vw - 32px)); }
.p-schedule-tasks { border: 0; padding: 0; margin: 0; min-width: 0; }
.p-schedule-tasks legend { margin-bottom: 8px; color: var(--muted); }
.p-schedule-task { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.p-schedule-task input { flex: 1 1 180px; min-width: 0; }
.p-schedule-task input, .p-schedule-task select, .p-schedule-dialog select { padding: 8px; border: 1px solid var(--border-strong); border-radius: 6px; background: var(--surface); color: var(--text); font: inherit; font-size: 16px; }
.p-schedule-task select { flex: 1 1 150px; min-width: 0; }
[data-schedule-row] h3, [data-schedule-run-tasks] li { overflow-wrap: anywhere; }
.p-dialog-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.p-form-error { color: var(--bad); margin: 12px 0 0; }
.p-preview-feedback { position: fixed; inset-inline: 16px; bottom: 16px; z-index: 80; width: fit-content; max-width: calc(100vw - 32px); margin-inline: auto; padding: 12px 16px; border: 1px solid var(--border-strong); border-radius: 8px; background: var(--surface); color: var(--text); box-shadow: 0 8px 24px rgb(0 0 0 / .2); }
[data-user-row] .p-cell-name { overflow-wrap: anywhere; }
@media (max-width: 600px) { .p-dialog { padding: 20px; } .c-invite input[type='email'] { font-size: 16px; } }
@media (max-width: 600px) {
  .p-table:has([data-user-row]), .p-table:has([data-user-row]) tbody { display: block; }
  .p-table:has([data-user-row]) thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
  [data-user-row] { display: grid; grid-template-columns: minmax(0, 1fr) 44px; border-bottom: 1px solid var(--border); padding: 12px; background: var(--surface); }
  [data-user-row]:last-child { border-bottom: 0; }
  .p-table [data-user-row] td { border: 0; padding: 0; background: transparent; }
  [data-user-row] .p-cell-name { flex-wrap: wrap; gap: 6px; }
  [data-user-row] .c-tag { flex-shrink: 0; white-space: nowrap; }
  [data-user-access] { grid-column: 1; margin-top: 4px; }
  .p-table [data-user-row] .c-col-act { grid-column: 2; grid-row: 1 / 3; width: auto; align-self: center; }
  [data-user-row] .c-icon-btn { width: 44px; height: 44px; }
}

/* The panel's own sign-in page: one narrow column, no navigation around it. */
.p-login { max-width: 380px; margin: 56px auto 0; }
.p-login h1 { margin: 0 0 6px; }
.p-login-lede { margin: 0 0 20px; color: var(--muted); font-size: 13px; }
.p-login-form { display: grid; gap: 14px; margin-top: 16px; }
.p-login-form .p-field input { width: 100%; min-width: 0; height: 38px; }
.p-login-submit { height: 38px; width: 100%; }
.p-login-alt { margin: 18px 0 0; color: var(--muted); font-size: 12.5px; }
@media (max-width: 720px) { .p-login { margin-top: 28px; } .p-login-form .p-field input { font-size: 16px; } }
