/* =====================================================================
   Public Lead Submission Page
   ===================================================================== */

.public-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0ea5e9 0%, #4f46e5 55%, #7c3aed 100%);
  background-size: 200% 200%;
  animation: gradientShift 14s ease infinite;
  padding: 24px;
}

.public-wrapper {
  width: 100%;
  max-width: 460px;
}

.public-logo {
  max-height: 56px;
  max-width: 200px;
  object-fit: contain;
}

.success-check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  box-shadow: 0 10px 24px rgba(22, 163, 74, 0.35);
  animation: popIn 0.4s ease;
}

@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.public-body .btn-primary {
  background: linear-gradient(135deg, #4f46e5, #4338ca);
  border: none;
  border-radius: 10px;
}

.public-body .btn-success {
  border-radius: 12px;
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 6px 18px rgba(22, 163, 74, 0.3); }
  50%      { box-shadow: 0 10px 28px rgba(22, 163, 74, 0.55); }
}

.public-body .form-control:focus,
.public-body .form-select:focus {
  box-shadow: none;
  border-color: #4f46e5;
}
