.auth-page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fce4ee 0%, #fff5f9 100%);
  padding: 40px 24px;
}

.auth-card {
  background: #fff;
  border-radius: 20px;
  padding: 48px;
  width: 100%;
  max-width: 460px;
  box-shadow: 0 12px 48px rgba(200,0,110,0.12);
}

.auth-logo {
  text-align: center;
  margin-bottom: 32px;
}

.auth-logo svg { height: 56px; width: auto; }

.auth-card h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--pink);
  margin-bottom: 8px;
  text-align: center;
}

.auth-card p {
  text-align: center;
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 28px;
}

.auth-footer {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--gray);
}

.auth-footer a {
  color: var(--pink);
  font-weight: 700;
}

.divider {
  text-align: center;
  position: relative;
  margin: 20px 0;
  color: var(--gray);
  font-size: 13px;
}
.divider::before, .divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--border);
}
.divider::before { left: 0; }
.divider::after { right: 0; }
