/* Auth — only styles that Tailwind cannot express
   (pseudo-elements, mask-image, complex background patterns,
    decorative overlays with arbitrary calc/opacity values) */

/* ── PPS logo watermark ── */
.auth-vball {
  position: absolute;
  right: -80px; top: -40px;
  width: 560px; height: 560px;
  opacity: 0.06;
  pointer-events: none; z-index: 1;
  animation: authFloat 12s ease-in-out infinite;
}
@keyframes authFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* Right panel subtle grid pattern (::before / ::after) */
.auth-right-panel::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(49, 90, 56, 0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(49, 90, 56, 0.10) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.4;
  pointer-events: none;
}
.auth-right-panel::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, #faf9f5 30%, transparent 80%);
  pointer-events: none;
}

/* Auth input custom focus ring (border + shadow combo) */
.auth-input {
  border: 1.5px solid rgba(49, 90, 56, 0.12);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.auth-input::placeholder {
  color: rgba(112, 112, 160, 0.45);
}
.auth-input:focus {
  border-color: #315a38;
  box-shadow: 0 0 0 3px rgba(49, 90, 56, 0.08);
}

/* Staggered fade-up entrance animations */
@keyframes authFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
.auth-fade-up   { animation: authFadeUp 0.7s 0.2s ease both; }
.auth-fade-up-1 { animation: authFadeUp 0.6s 0.1s ease both; }
.auth-fade-up-2 { animation: authFadeUp 0.6s 0.25s ease both; }
.auth-fade-up-3 { animation: authFadeUp 0.6s 0.4s ease both; }
