:root {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #4b5c16;
  background: linear-gradient(90deg, #fbfcf7 0%, #fefefc 42%, #fff 100%);
  background-attachment: fixed;
  font-synthesis: none;
}
* {
  box-sizing: border-box;
}
[hidden] {
  display: none !important;
}
html {
  min-width: 320px;
  min-height: 100%;
}
body {
  margin: 0;
  min-height: 100vh;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
small {
  display: block;
}

label,
label > span,
small {
  color: #000 !important;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
}
.brand b {
  font-weight: 500;
  color: #000;
}
.brand__mark {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  background: #667a1f;
  border-radius: 9px;
  color: #fff;
  font-weight: 800;
  font-size: 15px;
}
.eyebrow {
  color: #63771f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow--light {
  color: #eff6cf;
}
.button {
  min-height: 40px;
  padding: 9px 15px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 750;
}
.button--primary {
  color: #fff;
  background: #667a1f;
  box-shadow: 0 5px 12px rgba(102, 122, 31, 0.2);
}
.button--primary:hover {
  background: #526414;
}
.button--secondary {
  color: #63771f;
  border-color: #d1df91;
  background: #fff;
}
.button--wide {
  width: 100%;
  min-height: 45px;
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}
