:root {
  --bg: #0b1020;
  --bg-soft: #121933;
  --card: #161f3d;
  --card-2: #1b264a;
  --line: #263258;
  --text: #e8ecf7;
  --muted: #9aa6c7;
  --primary: #3b6cf6;
  --primary-2: #5a86ff;
  --high: #ff5c6c;
  --medium: #ffb020;
  --low: #4aa3ff;
  --info: #7c8bb5;
  --ok: #33d18f;
  --radius: 14px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 70% -10%, #1a2a5e 0%, transparent 60%), var(--bg);
  background-color: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(11, 16, 32, 0.7);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 10;
}
.brand { font-weight: 700; font-size: 18px; letter-spacing: 0.2px; display: flex; align-items: center; gap: 10px; }
.brand-mark { width: 30px; height: 30px; object-fit: contain; display: block; }
.topbar-tag { color: var(--muted); font-size: 13px; }

#app { max-width: 980px; margin: 0 auto; padding: 32px 24px 64px; }

.view { animation: fade 0.25s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.hidden { display: none !important; }

/* Hero */
.hero { text-align: center; padding: 40px 12px 24px; }
.hero-logo { width: 150px; height: auto; display: block; margin: 0 auto 26px; }
.hero h1 { font-size: 34px; line-height: 1.15; margin: 0 auto 16px; max-width: 720px; }
.hero .sub { color: var(--muted); font-size: 17px; max-width: 680px; margin: 0 auto 28px; line-height: 1.55; }
.trust { color: var(--muted); font-size: 13px; margin-top: 18px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 11px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.06s ease, background 0.15s ease, border-color 0.15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-2); }
.btn-lg { padding: 14px 26px; font-size: 16px; }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn-ghost:hover { background: var(--card-2); }
.btn-google { background: #fff; color: #202124; }
.btn-google:hover { background: #f1f3f4; }
.g-logo { width: 18px; height: 18px; display: block; flex: none; }
.connect-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.post-scan { border-radius: 10px; padding: 12px 16px; margin-top: 16px; font-size: 13.5px; line-height: 1.5; }
.post-scan.ok { background: rgba(51,209,143,0.12); border: 1px solid rgba(51,209,143,0.5); color: #bff0d8; }
.post-scan.warn { background: rgba(255,176,32,0.12); border: 1px solid rgba(255,176,32,0.5); color: #ffe4b0; }

.ms-logo {
  width: 16px; height: 16px; display: inline-block;
  background:
    linear-gradient(#f25022, #f25022) 0 0 / 7px 7px no-repeat,
    linear-gradient(#7fba00, #7fba00) 9px 0 / 7px 7px no-repeat,
    linear-gradient(#00a4ef, #00a4ef) 0 9px / 7px 7px no-repeat,
    linear-gradient(#ffb900, #ffb900) 9px 9px / 7px 7px no-repeat;
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  margin: 0 auto;
  max-width: 760px;
}
.card h2 { margin: 0 0 8px; font-size: 22px; }
.muted { color: var(--muted); line-height: 1.55; }
.section-title { margin: 36px 0 14px; font-size: 15px; text-transform: uppercase; letter-spacing: 1px; color: var(--muted); }

/* Consent */
.ok-head { color: var(--ok); margin: 0 0 10px; font-size: 15px; }
.no-head { color: var(--high); margin: 0 0 10px; font-size: 15px; }
.ticks, .crosses { list-style: none; padding: 0; margin: 0; }
.ticks li, .crosses li { padding: 6px 0 6px 24px; position: relative; color: var(--text); font-size: 14px; }
.ticks li::before { content: "✓"; color: var(--ok); position: absolute; left: 0; }
.crosses li::before { content: "✗"; color: var(--high); position: absolute; left: 0; }
.fineprint { color: var(--muted); font-size: 12.5px; margin-top: 16px; line-height: 1.5; }

/* Install wizard */
.wizard-card { max-width: 640px; }
.wizard-steps { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 10px; }
.wizard-step-dot {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--muted);
  background: var(--bg-soft); border: 1px solid var(--line);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.wizard-step-dot.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.wizard-step-dot.done { background: var(--card-2); border-color: var(--ok); color: var(--ok); }
.wizard-step-dot.done span { font-size: 0; }
.wizard-step-dot.done span::before { content: "✓"; font-size: 12px; }
.wizard-step-line { width: 32px; height: 1px; background: var(--line); flex: none; }
.wizard-step-label { text-align: center; color: var(--muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.8px; margin: 0 0 22px; }

.wizard-pane h2 { margin: 0 0 10px; font-size: 21px; }
.wizard-pane > .muted { margin-bottom: 18px; }

.wizard-check {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px;
  padding: 14px 16px; font-size: 14px; margin-top: 8px;
}
.wizard-check input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--primary); flex: none; }

.perm-categories { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.perm-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 10px; padding: 14px 16px; }
.perm-card-head { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 13.5px; margin-bottom: 8px; }
.perm-icon { font-size: 15px; }
.perm-card .ticks li { padding: 3px 0 3px 20px; font-size: 12.5px; color: var(--muted); }
.never-do { border-top: 1px solid var(--line); padding-top: 16px; }

.lifecycle { list-style: none; margin: 0; padding: 0; counter-reset: step; }
.lifecycle li {
  position: relative; padding: 4px 0 20px 40px; font-size: 14px; color: var(--muted); line-height: 1.5;
  counter-increment: step;
}
.lifecycle li::before {
  content: counter(step); position: absolute; left: 0; top: 2px;
  width: 26px; height: 26px; border-radius: 50%; background: var(--card-2); border: 1px solid var(--line);
  color: var(--text); font-size: 12px; font-weight: 700; display: flex; align-items: center; justify-content: center;
}
.lifecycle li:not(:last-child)::after {
  content: ""; position: absolute; left: 13px; top: 28px; bottom: 0; width: 1px; background: var(--line);
}
.lifecycle li strong { color: var(--text); }
.lifecycle li:last-child { padding-bottom: 0; }

.wizard-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--line); }
#wizard-next:disabled { opacity: 0.45; cursor: not-allowed; }

/* Progress */
.progressbar { height: 10px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; margin: 18px 0 22px; border: 1px solid var(--line); }
.progressbar-fill { height: 100%; width: 0; background: linear-gradient(90deg, var(--primary), var(--primary-2)); transition: width 0.4s ease; }
.steps { list-style: none; padding: 0; margin: 0; }
.steps li { display: flex; align-items: center; gap: 10px; padding: 9px 0; border-bottom: 1px dashed var(--line); font-size: 14px; }
.steps li:last-child { border-bottom: none; }
.dot { width: 16px; text-align: center; }
.dot.running { color: var(--medium); }
.dot.ok { color: var(--ok); }
.dot.failed { color: var(--high); }
.step-err { color: var(--muted); font-size: 12px; margin-left: auto; }

/* Results header */
.results-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; }

/* Scorecard */
.scorecard { display: flex; gap: 28px; align-items: center; background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px 28px; margin-top: 18px; }
.score-ring {
  width: 132px; height: 132px; border-radius: 50%; flex: none;
  display: grid; place-items: center; position: relative;
  background: conic-gradient(var(--ring-color, var(--info)) calc(var(--pct, 0) * 1%), var(--line) 0);
}
.score-ring::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--card); }
.score-ring span { position: relative; font-size: 38px; font-weight: 800; line-height: 1; }
.score-ring small { position: relative; color: var(--muted); font-size: 12px; margin-top: 4px; font-weight: 700; letter-spacing: 1px; }
.score-side { flex: 1; }
.score-side h3 { margin: 0 0 4px; font-size: 18px; }
.score-caption { font-size: 13px; margin: 0 0 14px; }
.domain-bars { display: flex; flex-direction: column; gap: 9px; }
.dbar { display: grid; grid-template-columns: 150px 1fr 42px; align-items: center; gap: 10px; font-size: 13px; }
.dbar .dbar-label { color: var(--muted); }
.dbar .dbar-track { height: 8px; background: var(--bg-soft); border-radius: 999px; overflow: hidden; border: 1px solid var(--line); }
.dbar .dbar-fill { height: 100%; border-radius: 999px; }
.dbar .dbar-val { text-align: right; font-variant-numeric: tabular-nums; }

/* Trend + roadmap */
.trend-line { font-size: 13px; font-weight: 600; margin: -6px 0 12px; }
.trend-line.up { color: var(--ok); }
.trend-line.down { color: var(--high); }
.trend-line.neutral { color: var(--muted); }
.roadmap-projection { color: var(--ok); font-size: 13.5px; font-weight: 600; margin: -4px 0 12px; }
.roadmap-item { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 2px 14px; margin-bottom: 8px; }
.roadmap-item summary { cursor: pointer; padding: 12px 0; display: flex; align-items: center; gap: 12px; list-style: none; font-size: 14px; }
.roadmap-item summary::-webkit-details-marker { display: none; }
.roadmap-num { width: 22px; height: 22px; border-radius: 50%; background: var(--card-2); border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; flex: none; }
.gain-badge { font-size: 11px; font-weight: 800; color: var(--ok); background: rgba(51,209,143,0.14); border-radius: 999px; padding: 3px 9px; white-space: nowrap; }
.effort-tag { font-size: 11px; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 3px 9px; white-space: nowrap; }
.roadmap-steps { margin: 0; padding-left: 18px; color: var(--muted); font-size: 13px; line-height: 1.6; }

/* Tiles */
.tiles { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; margin-top: 18px; }
.tile { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px; }
.tile .num { font-size: 26px; font-weight: 700; }
.tile .lbl { color: var(--muted); font-size: 12.5px; margin-top: 4px; }

/* Findings */
.findings { display: flex; flex-direction: column; gap: 10px; }
.finding { display: flex; gap: 14px; background: var(--card); border: 1px solid var(--line); border-left-width: 4px; border-radius: 10px; padding: 14px 16px; }
.finding.high { border-left-color: var(--high); }
.finding.medium { border-left-color: var(--medium); }
.finding.low { border-left-color: var(--low); }
.finding.info { border-left-color: var(--info); }
.sev { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; padding: 3px 8px; border-radius: 999px; height: fit-content; white-space: nowrap; }
.sev.high { background: rgba(255,92,108,0.16); color: var(--high); }
.sev.medium { background: rgba(255,176,32,0.16); color: var(--medium); }
.sev.low { background: rgba(74,163,255,0.16); color: var(--low); }
.sev.info { background: rgba(124,139,181,0.16); color: var(--info); }
.finding .f-title { font-weight: 600; margin: 0 0 4px; }
.finding .f-detail { color: var(--muted); font-size: 13.5px; line-height: 1.5; margin: 0; }
.cis-tag { display: inline-block; font-size: 11px; color: var(--muted); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; margin-top: 6px; }

/* Status pills */
.pill { font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.pill.pass { background: rgba(51,209,143,0.16); color: var(--ok); }
.pill.partial { background: rgba(255,176,32,0.16); color: var(--medium); }
.pill.fail { background: rgba(255,92,108,0.16); color: var(--high); }
.pill.na, .pill.error { background: rgba(124,139,181,0.16); color: var(--info); }

/* Controls */
.controls { display: flex; flex-direction: column; gap: 8px; }
.control { background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 2px 14px; }
.control summary { cursor: pointer; padding: 12px 0; display: flex; align-items: center; gap: 12px; list-style: none; font-size: 14px; }
.control summary::-webkit-details-marker { display: none; }
.control .c-title { flex: 1; }
.control .c-domain { color: var(--muted); font-size: 12px; }
.control .c-body { padding: 0 0 14px; color: var(--muted); font-size: 13.5px; line-height: 1.55; }
.control pre { background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px; padding: 10px; overflow-x: auto; font-size: 12px; color: #cdd6f0; margin: 8px 0 0; }

.collection { margin-top: 24px; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 4px 16px; }
.collection summary { cursor: pointer; padding: 12px 0; color: var(--muted); font-size: 13px; }

/* Banner */
.banner { background: rgba(255,92,108,0.14); border: 1px solid var(--high); color: #ffd5da; padding: 12px 16px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; }

.foot { text-align: center; color: var(--muted); font-size: 12.5px; padding: 24px; border-top: 1px solid var(--line); }

/* Portfolio ticker -------------------------------------------------------- */
/* Light band on purpose: the partner logos are dark artwork on transparency
   and would be near-invisible on the dark page background. */
.partner-band { background: #f4f6fb; border-top: 1px solid var(--line); padding: 20px 0 22px; }
.partner-label {
  text-align: center; margin: 0 0 14px; color: #5b6884;
  font-size: 11px; text-transform: uppercase; letter-spacing: 1.2px; font-weight: 600;
}

.marquee { position: relative; overflow: hidden; }
/* Fade the edges so logos enter and leave instead of being hard-clipped. */
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 64px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #f4f6fb, rgba(244, 246, 251, 0)); }
.marquee::after { right: 0; background: linear-gradient(270deg, #f4f6fb, rgba(244, 246, 251, 0)); }

.marquee-track { display: flex; width: max-content; animation: marquee-scroll 34s linear infinite; }
/* Each set carries its own trailing gap, so the two sets are exactly equal in
   width and translating -50% lands precisely on the start of the duplicate. */
.marquee-set { display: flex; align-items: center; gap: 64px; padding-right: 64px; flex: none; }
/* These logos range from near-square to very wide. Constraining height alone
   makes the square mark look tiny next to a wide wordmark, so bound BOTH axes
   and let the near-square marks run taller — optical size, not literal height. */
.marquee-set img {
  max-height: 34px; max-width: 132px;
  height: auto; width: auto; flex: none; object-fit: contain;
  opacity: 0.85; transition: opacity 0.2s ease;
}
.marquee-set img[data-shape="square"] { max-height: 44px; }
.marquee-set img:hover { opacity: 1; }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* Scroll by exactly one set width, so the next copy lands where this one
   started. marquee.js sets --marquee-shift to -(100 / number-of-sets)%; the
   -50% default is correct for the two sets present in the markup. */
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(var(--marquee-shift, -50%)); }
}

/* An endlessly moving element is a genuine accessibility problem — fall back to
   a static, centered, wrapping row. */
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; width: 100%; justify-content: center; flex-wrap: wrap; }
  .marquee-set { flex-wrap: wrap; justify-content: center; padding-right: 0; gap: 40px; }
  .marquee-set[aria-hidden="true"] { display: none; }
  .marquee::before, .marquee::after { display: none; }
}
.foot-link { color: var(--muted); text-decoration: none; }
.foot-link:hover { color: var(--text); }

/* Admin */
.admin-input { width: 100%; margin-top: 10px; padding: 11px 14px; border-radius: 10px; border: 1px solid var(--line); background: var(--bg-soft); color: var(--text); font-size: 14px; }
.btn-sm { padding: 6px 12px; font-size: 13px; }
.btn-sm.danger { color: var(--high); border-color: rgba(255,92,108,0.4); }
.btn-sm.danger:hover { background: rgba(255,92,108,0.12); }
.reports-table { margin-top: 18px; display: flex; flex-direction: column; gap: 6px; }
.rt-head, .rt-row { display: grid; grid-template-columns: 1.8fr 0.7fr 0.9fr 0.7fr 1fr 1.3fr 1.6fr; align-items: center; gap: 10px; padding: 12px 14px; font-size: 13px; }
.rt-head { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.6px; padding-bottom: 4px; }
.rt-row { background: var(--card); border: 1px solid var(--line); border-radius: 10px; }
.rt-actions { display: flex; gap: 6px; justify-content: flex-end; }
@media (max-width: 820px) {
  .rt-head { display: none; }
  .rt-row { grid-template-columns: 1fr 1fr; }
  .rt-actions { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 640px) {
  .hero h1 { font-size: 26px; }
  .perm-categories { grid-template-columns: 1fr; }
  .results-head, .scorecard { flex-direction: column; }
  .dbar { grid-template-columns: 110px 1fr 38px; }
}

/* --- Admin: tabs ---------------------------------------------------- */
.admin-tabs { display: flex; gap: 4px; }
.admin-tab {
  background: transparent; border: 1px solid transparent; color: var(--muted);
  font: inherit; font-size: 15px; font-weight: 600; padding: 8px 16px;
  border-radius: 10px; cursor: pointer;
}
.admin-tab:hover { color: var(--text); background: var(--bg-soft); }
.admin-tab.is-active { color: var(--text); background: var(--card-2); border-color: var(--line); }

/* --- Admin: settings ------------------------------------------------ */
.settings-intro { max-width: 720px; margin: 0 0 18px; font-size: 14px; }

.redirect-note {
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 3px solid var(--primary);
  border-radius: 10px; padding: 14px 18px; margin-bottom: 20px; font-size: 13.5px; color: var(--muted);
}
.redirect-note ul { margin: 8px 0 0; padding-left: 18px; }
.redirect-note li { padding: 3px 0; }
.redirect-note code {
  background: var(--card-2); border: 1px solid var(--line); border-radius: 6px;
  padding: 2px 7px; font-size: 12.5px; color: var(--text); word-break: break-all;
}

.set-group { margin-bottom: 18px; }
.set-group-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.set-group-head h3 { margin: 0; font-size: 17px; }
.set-blurb { font-size: 13px; margin: 6px 0 18px; }

.set-status { font-size: 12.5px; text-align: right; line-height: 1.45; }
.set-status.ok { color: var(--ok); }
.set-status.bad { color: var(--high); }
.set-status.muted { color: var(--muted); }

.set-field { padding: 12px 0; border-top: 1px dashed var(--line); }
.set-field:first-of-type { border-top: none; }
.set-label { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; }

.src-badge {
  font-size: 10.5px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px;
  padding: 2px 8px; border-radius: 999px; border: 1px solid var(--line); white-space: nowrap;
}
.src-badge.stored { color: var(--ok); border-color: rgba(51, 209, 143, 0.4); background: rgba(51, 209, 143, 0.12); }
.src-badge.env { color: var(--low); border-color: rgba(74, 163, 255, 0.4); background: rgba(74, 163, 255, 0.12); }
.src-badge.unset { color: var(--muted); background: var(--bg-soft); }

.set-input-row { display: flex; gap: 8px; align-items: center; }
.set-input-row .admin-input { margin-top: 8px; }
.set-input-row .btn { margin-top: 8px; flex: none; }
/* Placeholders carry real information here (the masked tail of a stored
   secret), so they need more contrast than a typical hint. */
.set-input::placeholder { color: #6b78a0; opacity: 1; }

.set-help { font-size: 12.5px; color: var(--muted); margin: 7px 0 0; line-height: 1.5; }
.set-issue { font-size: 12.5px; margin: 7px 0 0; line-height: 1.5; }
.set-issue.error { color: var(--high); }
.set-issue.warn { color: var(--medium); }

.set-note {
  font-size: 12.5px; color: var(--muted); line-height: 1.5;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px;
  padding: 10px 14px; margin: 16px 0 0;
}
.set-actions { display: flex; gap: 10px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }

@media (max-width: 620px) {
  .set-group-head { flex-direction: column; gap: 4px; }
  .set-status { text-align: left; }
}

/* Operator entry point in the footer. Deliberately understated: the landing
   page is prospect-facing, so the admin surface shouldn't compete with the
   connect buttons. app.js hides it entirely when the console is disabled. */
.admin-link {
  display: inline-block;
  margin-left: 14px;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}
.admin-link:hover { color: var(--text); background: var(--card-2); border-color: var(--primary); }

@media (max-width: 520px) {
  .admin-link { display: block; width: max-content; margin: 12px auto 0; }
}

/* Temporary-password notice — deliberately louder than a normal hint: a
   bootstrap password has usually travelled over a channel that shouldn't hold
   a long-lived credential. */
.temp-password-warning {
  background: rgba(255, 176, 32, 0.12);
  border: 1px solid rgba(255, 176, 32, 0.5);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.55;
  color: #ffe4b0;
}
.temp-password-warning strong { color: #fff3d8; display: block; margin-bottom: 3px; }

#login-password .set-label { display: block; margin-bottom: 2px; }
#login-password .admin-input { margin-top: 4px; }
