:root {
  --bg: #ffffff;
  --ink: #000000;
  --muted: #a1a1a1;
  --panel: #efedf3;
  --accent: #9d7ce3;
  --accent-deep: #000000;
  --shadow: 0 32px 80px rgba(29, 27, 22, 0.18);
  --radius: 26px;
  --cta-primary-bg: linear-gradient(45deg, #c6c6f1 0%, #f0d7d6 100%);
  --cta-primary-ink: #0f0f0f;
  --cta-secondary-bg: #000000;
  --cta-secondary-ink: #ffffff;
  --cta-secondary-border: rgba(125, 102, 76, 0.25);
  --cta-shadow: 0 10px 22px rgba(29, 27, 22, 0.18);
}

html, body {
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  color: var(--ink);
  background: #fff;
  padding: 28px 16px 48px;
  display: flex;
  justify-content: center;
}

a,
.link {
  color: var(--accent);
  text-decoration: none;
}

.link {
  border: none;
  background: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

a:focus-visible,
.link:focus-visible {
  outline: 2px solid rgba(157, 124, 227, 0.5);
  outline-offset: 2px;
}

.cta {
  border: none;
  border-radius: 999px;
  padding: 10px 18px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.cta:focus-visible {
  outline: 2px solid rgba(157, 124, 227, 0.5);
  outline-offset: 2px;
}

.cta--primary {
  background: var(--cta-primary-bg);
  color: var(--cta-primary-ink);
}

.cta--primary:hover {
  transform: translateY(-2px);
}

.cta--secondary {
  background: var(--cta-secondary-bg);
  color: var(--cta-secondary-ink);
  border: 1px solid var(--cta-secondary-border);
  box-shadow: none;
}

.cta__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.cta.is-disabled {
  opacity: 0.6;
}

.input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.select-wrap {
  position: relative;
  display: grid;
  align-items: center;
}

.select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  display: grid;
  place-items: center;
  color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  font-size: 0.75rem;
}

.field select,
#language-select {
  appearance: none;
  border-radius: 999px;
  padding: 12px 48px 12px 18px;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.2;
  background-color: #fff;
  box-shadow: 0 10px 22px rgba(29, 27, 22, 0.12);
  cursor: pointer;
}

.field select:hover,
#language-select:hover {
  border-color: rgba(125, 102, 76, 0.4);
  box-shadow: 0 12px 26px rgba(29, 27, 22, 0.16);
}

.field select:focus,
#language-select:focus {
  outline: 2px solid rgba(157, 124, 227, 0.35);
  border-color: rgba(157, 124, 227, 0.6);
}
