body {
  margin: 0;
  background: var(--color-surface-page);
  color: #213b55;
  font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body:has(.redirect-page) {
  background: var(--color-surface-page);
}

.redirect-page {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 100vh;
  background: var(--color-surface-page);
  padding: 3rem 1.25rem 1.25rem;
}

.redirect-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: min(100%, 24rem);
  margin-top: 3rem;
  padding: 1.5rem;
  box-sizing: border-box;
  border: 1px solid rgba(33, 59, 85, 0.12);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(33, 59, 85, 0.08);
}

.redirect-copy {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 400;
  color: rgba(33, 59, 85, 0.72);
  letter-spacing: 0.01em;
  text-align: center;
}

.redirect-retry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  border: 0;
  border-radius: 8px;
  background: #213b55;
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.redirect-retry:hover,
.redirect-retry:focus-visible {
  background: #17324d;
}
