/* Form error styles */
.error-message {
  color: #ef4444;
  font-size: 0.75rem;
  margin-top: 0.25rem;
  display: block;
}

/* Success message styles */
.success-message {
  background-color: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  margin-top: 1rem;
  animation: fadeIn 0.5s ease-in-out;
}

/* Form input error state */
.input-error {
  border-color: #ef4444 !important;
}

/* Animation for success message */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}