/* Auth — light maroon glass */
.gp-auth-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,220,220,0.55), transparent 42%),
    linear-gradient(160deg, #F3D4D4 0%, #E8A5A5 40%, #C45C5C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

.gp-auth-shell {
  width: 100%;
  max-width: 440px;
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(120, 50, 50, 0.18);
  animation: gpAuthIn 0.5s ease both;
}

.gp-auth-shell--wide {
  max-width: 980px;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.gp-auth-shell--wide .gp-auth-brand {
  color: #3A2A2A;
  margin-bottom: 28px;
  text-align: center;
}

.gp-auth-shell--wide .gp-auth-brand img {
  height: 56px;
  margin-bottom: 16px;
  filter: none;
}

.gp-auth-shell--wide .gp-auth-brand h1 {
  font-family: "Fraunces", Georgia, serif;
  color: #3A2A2A;
}

.gp-auth-shell--wide .gp-auth-lead {
  color: #6A5555;
  max-width: 36rem;
  margin: 8px auto 16px;
}

.gp-auth-shell h1,
.gp-auth-shell h2 {
  font-family: "Fraunces", Georgia, serif;
  text-align: center;
  font-size: 1.65rem;
  color: #3A2A2A;
  margin-bottom: 6px;
}

.gp-auth-logo {
  height: 56px !important;
  margin-bottom: 10px;
}

.gp-auth-secure-note {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.78rem;
  color: #1B5E2A;
  background: #F3FFF6;
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 14px;
}

@keyframes gpAuthIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.gp-plan-grid--choose .gp-plan-card { background: #fff; }
