body.auth-page {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  background: #f6f7f9;
  color: #111;
}

.auth-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: #fff;
  border: 1px solid #e7eaf0;
  border-radius: 0.9rem;
  padding: 1.2rem;
  box-shadow: 0 8px 24px rgba(16, 24, 40, 0.08);
}

.auth-card--wide {
  max-width: 640px;
}

.auth-title {
  font-size: 1.35rem;
  margin: 0.2rem 0 1rem;
  text-align: center;
}

.auth-description {
  color: #555;
  margin: 0.4rem 0 1.2rem;
  text-align: center;
}

.auth-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
  margin-top: 0.8rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 1px solid #d7dbe0;
  background: #fff;
  color: #111;
  border-radius: 0.7rem;
  cursor: pointer;
  text-decoration: none;
}

.icon-btn:hover {
  filter: brightness(0.98);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.signup-user {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.signup-user img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.signup-terms {
  max-height: 240px;
  overflow: auto;
  border: 1px solid #eceff3;
  border-radius: 0.6rem;
  padding: 0.8rem;
  background: #fbfcfe;
}

.signup-actions {
  display: flex;
  gap: 0.6rem;
  justify-content: flex-end;
  margin-top: 0.9rem;
}

.signup-title {
  margin: 0.2rem 0 1rem;
  font-size: 1.25rem;
}

.signup-info {
  color: #666;
  font-size: 0.92rem;
}

.signup-name {
  font-weight: 700;
}

body.page-signup .auth-title,
body.page-signup .signup-title {
  text-align: left;
}
