/* Button */
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 58px;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: var(--accent);
  color: #000;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  border-radius: 16px;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(163, 230, 53, 0.35),
    0 10px 32px rgba(163, 230, 53, 0.18);
  transition:
    transform 0.12s ease,
    background 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover {
  background: var(--accent-2);
}
.btn:active {
  transform: scale(0.98);
}
.btn svg {
  flex: 0 0 auto;
}
