* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--ds-paper);
  color: var(--ds-ink);
  font: 16px/1.4 ui-sans-serif, system-ui, sans-serif;
}

.ds-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 1.75rem;
  padding: 2rem 1.25rem;
  overflow-x: hidden;
}

.ds-lockup {
  display: block;
  width: min(26rem, 100%);
  max-width: 100%;
  min-width: 0;
  height: auto;
  margin-inline: auto;
}

.ds-google-btn {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding: 0.55rem 1.15rem 0.55rem 0.85rem;
  border: 1px solid #747775;
  border-radius: 0.35rem;
  background: var(--ds-surface);
  color: var(--ds-ink);
  font: 650 0.95rem/1.2 ui-sans-serif, system-ui, sans-serif;
  text-decoration: none;
}

.ds-google-btn:hover {
  box-shadow: 0 1px 3px rgba(24, 29, 51, 0.16);
}

.ds-google-btn:focus-visible {
  outline: 3px solid var(--ds-rose);
  outline-offset: 3px;
}

.ds-google-btn:active {
  background: #f1f2f6;
}

.ds-google {
  width: 1.15rem;
  height: 1.15rem;
}

@media (max-width: 42rem) {
  .ds-lockup {
    width: min(18.5rem, 100%);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
