:root {
  --bg: #f5efe6;
  --panel: #fffaf2;
  --paper: #fffdf8;
  --ink: #2f2923;
  --muted: #6f6356;
  --line: #ddcdb7;
  --accent: #2e6f7a;
  --accent-strong: #1d4f58;
  --green: #55785a;
  --rose: #ad5f68;
  --gold: #b9852c;
  --shadow: rgba(47, 41, 35, .16);
}

* {
  box-sizing: border-box;
}

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

body {
  overflow-x: hidden;
  background:
    linear-gradient(135deg, rgba(46, 111, 122, .12), transparent 34%),
    linear-gradient(315deg, rgba(173, 95, 104, .11), transparent 32%),
    var(--bg);
  color: var(--ink);
  font-family: Arial, sans-serif;
  font-size: 16px;
}

a {
  color: inherit;
}

button {
  min-width: 0;
  min-height: 44px;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  line-height: 1.15;
  overflow-wrap: anywhere;
  text-align: center;
}

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

.primary-button,
.secondary-button,
.ghost-button,
.link-button {
  border: 1px solid var(--line);
  padding: 9px 12px;
  white-space: normal;
}

.primary-button {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.secondary-button {
  background: var(--paper);
  color: var(--accent-strong);
}

.ghost-button,
.link-button {
  background: transparent;
  color: var(--accent-strong);
}

.link-button {
  min-height: 36px;
  padding: 6px 0;
  border: 0;
  text-decoration: underline;
}

.is-hidden {
  display: none !important;
}
