:root {
  --bg: #edf3f8;
  --panel: #ffffff;
  --line: #d7e0e8;
  --text: #14273c;
  --muted: #5c6f85;
  --accent: #00637c;
  --accent2: #13916f;
  --sidebar: #10263b;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "IBM Plex Sans", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(19, 145, 111, 0.14), transparent 18rem),
    linear-gradient(180deg, #f6fbff 0%, #ebf1f7 100%);
}
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button {
  border: 0;
  border-radius: 12px;
  padding: 11px 14px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  color: white;
  cursor: pointer;
}
input {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 12px;
  background: white;
}
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(13, 26, 40, 0.06);
}
.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--muted);
}
.muted { color: var(--muted); }
.danger { color: #b54343; }
.ghost-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px;
}
