:root {
  color-scheme: light;
  --nkwa-green: #2fb28f;
  --ink: #0f172a;
  --muted: #64748b;
  --bg: #f8fafc;
  font-family:
    'Segoe UI',
    system-ui,
    -apple-system,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body,
#app {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--ink);
}

.centered {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1.5rem;
  text-align: center;
}

.centered h1 {
  margin: 0;
  font-size: 1.5rem;
}

.centered p {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  line-height: 1.5;
}

.done h1 {
  color: var(--nkwa-green);
}

.hidden {
  display: none !important;
}

#ballerine-sdk {
  min-height: 100vh;
}
