.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  height: 37px;
  line-height: 21px;

  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.05em;
  text-decoration: none;

  padding: 0.5rem 1rem;
  border-radius: 9999px;

  transition:
    background-color 0.2s,
    box-shadow 0.1s;
  cursor: pointer;

  &:active {
    transform: scale(0.99) translate(0, 1px);
  }

  &:disabled {
    cursor: not-allowed;
    opacity: 0.5;
  }

  &:hover {
    text-decoration: none !important;
  }
}

.btn--secondary {
  color: var(--color-grey-dark);
  background-color: var(--color-white);
  box-shadow:
    0 53px 32px #00000005,
    0 6px 13px #0000000a,
    0 1px 3px #8f8f8f33,
    0 0 0 1px #eaeaea,
    inset 0 -2.4px #3d3d3d0a;

  &:hover {
    background-color: var(--color-gray-50);
  }

  &:active {
    color: var(--color-grey-dark);
    background-color: var(--color-gray-100);
    box-shadow:
      0 53px 32px #00000005,
      0 6px 13px #0000000a,
      0 1px 3px #8f8f8f33,
      0 0 0 1px #eaeaea,
      inset 0 -1px #3d3d3d0a;
  }

  &:focus {
    background-color: var(--color-gray-100);
  }
}
