*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

#app {
  min-height: 100vh;
}

body.mode-login #app {
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.error-text {
  color: var(--err);
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
}

.success-text {
  color: var(--ok);
  font-size: 0.875rem;
  margin: 0.5rem 0 0;
}

[hidden] {
  display: none !important;
}
