/* PEPS Vibe Forms - success/error message styling
   Add these to your theme CSS or paste into the site's CSS block.
   Uses the Carola CSS variables where available, with fallbacks. */

.pvf-message {
  margin-top: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.pvf-message.pvf-error {
  background: rgba(217, 106, 167, 0.1);
  color: var(--clr-warm-pink, #D96AA7);
  border: 1px solid var(--clr-warm-pink, #D96AA7);
}

.pvf-success {
  padding: 2rem 1.5rem;
  text-align: center;
  background: var(--clr-cream, #FFF7FB);
  border-radius: 12px;
  border: 1px solid var(--clr-soft-pink, #F3C7DA);
}

.pvf-success h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading, 'Playfair Display', serif);
  font-size: 1.6rem;
  color: var(--clr-deep-purple, #4B1E5A);
}

.pvf-success p {
  margin: 0;
  color: var(--clr-text-light, #666);
}
