.auth-screen {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  background: #ffffff;
}

.auth-shell {
  display: grid;
  justify-items: center;
  gap: 18px;
  width: min(100%, 360px);
}

.auth-logo {
  position: absolute;
  top: 32px;
  left: 50%;
  width: min(100%, 220px);
  height: auto;
  transform: translateX(-50%);
}

.auth-mascot-frame {
  display: grid;
  place-items: center;
  width: 100%;
}

.auth-mascot {
  width: min(100%, 148px);
  height: auto;
}

.auth-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.3;
  white-space: nowrap;
  text-align: center;
}

.auth-google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 2px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 3px 3px 0 var(--line);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background-color 140ms ease,
    opacity 140ms ease;
}

.auth-google-button img {
  width: 22px;
  height: 22px;
}

.auth-google-button:hover,
.auth-google-button:focus-visible {
  background: #fff8ec;
  transform: translate(1px, 1px);
  box-shadow: 2px 2px 0 var(--line);
}

.auth-google-button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.auth-legal-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
  text-align: center;
}

.auth-legal-note a {
  color: var(--ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.auth-legal-note a:hover,
.auth-legal-note a:focus-visible {
  color: #8c5d12;
}

.auth-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 420px) {
  .auth-logo {
    width: 168px;
  }

  .auth-intro {
    font-size: 0.86rem;
  }
}
