.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  background: var(--accent);
  color: #fff;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
}

.button--ghost {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.button--ghost:hover {
  background: rgba(86, 113, 63, 0.06);
}
