/* Shared styles for the Phase 10 customer-auth pages.
   Kept inline-importable via <link> from each page so the visual
   identity stays consistent with the rest of the site without
   duplicating ~60 lines of CSS into every file. */
:root {
  --bg: #0e1116; --panel: #161b22; --panel-2: #1f242d; --border: #30363d;
  --fg: #e6edf3; --muted: #8b949e; --accent: #5ec8ff; --accent-2: #b388ff;
  --ok: #5cd97a; --err: #f25f5c;
  color-scheme: dark;
}
* { box-sizing: border-box; }
html, body { margin: 0; background: var(--bg); color: var(--fg);
              font: 15px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI",
              Roboto, sans-serif; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
header.nav {
  display: flex; align-items: center; gap: 18px;
  padding: 12px 24px; border-bottom: 1px solid var(--border);
}
header.nav .brand { font: 600 15px/1 ui-monospace, monospace;
                     color: var(--accent); letter-spacing: 2px; }
header.nav nav { display: flex; gap: 4px; }
header.nav nav a { color: var(--muted); padding: 6px 12px; border-radius: 4px; }
header.nav nav a:hover { color: var(--fg); background: var(--panel-2); text-decoration: none; }
header.nav .grow { flex: 1; }
.wrap { max-width: 460px; margin: 60px auto; padding: 0 24px; }
.card { background: var(--panel); border: 1px solid var(--border);
        border-radius: 8px; padding: 1.6rem 1.8rem; }
h1 { font-size: 1.5rem; margin: 0 0 .25rem; }
.lede { color: var(--muted); margin: 0 0 1.5rem; }
label { display: block; margin: .8rem 0 .25rem; font-size: 13px; color: var(--muted); }
input[type=email], input[type=password], input[type=text] {
  width: 100%; padding: .55rem .7rem; background: #0a0d12;
  color: var(--fg); border: 1px solid var(--border); border-radius: 4px;
  font: inherit;
}
input:focus { outline: none; border-color: var(--accent); }
button.primary {
  margin-top: 1.2rem; padding: .65rem 1.1rem; width: 100%;
  background: var(--accent); color: #04121d; border: 0;
  border-radius: 4px; font: 600 14px/1 inherit; cursor: pointer;
}
button.primary:hover { background: #8ad8ff; }
button.primary:disabled { opacity: .6; cursor: not-allowed; }
button.secondary {
  margin-top: .6rem; padding: .65rem 1.1rem; width: 100%;
  background: var(--panel-2); color: var(--fg);
  border: 1px solid var(--border); border-radius: 4px;
  font: 500 14px/1 inherit; cursor: pointer; display: flex;
  align-items: center; justify-content: center; gap: .5rem;
}
button.secondary:hover { background: #2a313b; }
.alt { margin-top: 1.2rem; text-align: center; color: var(--muted); font-size: 13px; }
.divider { display: flex; align-items: center; gap: .75rem;
           margin: 1.2rem 0; color: var(--muted); font-size: 12px; }
.divider::before, .divider::after {
  content: ""; flex: 1; height: 1px; background: var(--border);
}
.banner { padding: .6rem .8rem; border-radius: 4px;
          margin-bottom: 1rem; font-size: 13px; }
.banner.ok  { background: rgba(92, 217, 122, .12); color: var(--ok);
              border: 1px solid rgba(92, 217, 122, .35); }
.banner.err { background: rgba(242, 95, 92, .12); color: var(--err);
              border: 1px solid rgba(242, 95, 92, .35); }
.hint { color: var(--muted); font-size: 12px; margin-top: .25rem; }
</content>
</invoke>