:root {
  --btn-h: 44px;
  --btn-r: 8px;
  --btn-fs: 14px;
  --btn-lh: 20px;
  --btn-fw: 600;
  --btn-ls: 0.02em;
  --brand: #045A55;
  --brand-hover: #04423f;
  --brand-pressed: #022e2c;
  --neutral-300: #d1d5db;
  --neutral-400: #9ca3af;
  --neutral-500: #6b7280;
  --white: #ffffff;
}

.btn {
  height: var(--btn-h);
  min-width: 120px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--btn-r);
  border: 1px solid transparent;
  font-size: var(--btn-fs);
  line-height: var(--btn-lh);
  font-weight: var(--btn-fw);
  letter-spacing: var(--btn-ls);
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  white-space: nowrap;
  transition: all 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--brand) 35%, transparent);
  outline-offset: 2px;
}

.btn:active {
  transform: translateY(1px);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  cursor: not-allowed;
  pointer-events: none;
  transform: none;
  opacity: 0.6;
}

.btn--solid {
  background: var(--brand);
  color: var(--white);
}

.btn--solid:hover {
  background: var(--brand-hover);
  transform: translateY(-1px);
}

.btn--solid:active {
  background: var(--brand-pressed);
  transform: translateY(0);
}

.btn--solid:disabled,
.btn--solid[aria-disabled="true"] {
  background: var(--neutral-300);
  color: var(--neutral-500);
  transform: none;
}

.btn--outline {
  background: transparent;
  color: var(--brand);
  border-color: var(--brand);
}

.btn--outline:hover {
  background: color-mix(in srgb, var(--brand) 8%, transparent);
  transform: translateY(-1px);
}

.btn--outline:active {
  background: color-mix(in srgb, var(--brand) 12%, transparent);
  transform: translateY(0);
}

.btn--outline:disabled,
.btn--outline[aria-disabled="true"] {
  border-color: var(--neutral-300);
  color: var(--neutral-400);
  background: transparent;
  transform: none;
}

.btn--block {
  width: 100%;
  min-width: 0;
}

.btn--large {
  height: 52px;
  font-size: 15px;
  padding: 0 24px;
}

.btn--large:hover {
  transform: translateY(-2px);
}

.btn--wide {
  width: 100%;
}

.btn--dark{
  background: #022E2B;
}