* { box-sizing: border-box; }

html,
body {
  margin: 0;
  min-height: 100%;
}

body.cvz-app {
  min-height: 100vh;
  font-family: var(--cvz-font-sans);
  color: var(--cvz-ink);
  background: linear-gradient(180deg, var(--cvz-bg) 0%, #ffffff 100%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .72;
}

.cvz-muted-text {
  display: block;
  color: var(--cvz-muted);
  font-size: 13px;
  margin-top: 10px;
}

.cvz-page {
  display: none;
}

.cvz-page.is-active {
  display: block;
}

[hidden] {
  display: none !important;
}

