/* style.css */

/* Gradient background for the whole page */
body {
  font-family:  Arial, Helvetica, sans-serif;
}

/* Optional: Add a subtle animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

form {
  animation: fadeIn 0.6s ease-out;
}

