 <style>
    /* Fade in the whole page on load */
    body {
      opacity: 0;
      animation: fadeIn 1.2s ease-in forwards;
    }

    @keyframes fadeIn {
      to {
        opacity: 1;
      }
    }

    /* Slide-in animation for the form */
    .form__section-container {
      transform: translateY(50px);
      opacity: 0;
      animation: slideIn 1s ease-out forwards;
      animation-delay: 0.3s;
      will-change: transform, opacity;
    }

    @keyframes slideIn {
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    /* Modern marquee replacement */
    .announcement-bar {
      overflow: hidden;
      white-space: nowrap;
      background: #0b4a53;
      color: #fff;
      padding: 10px 0;
      font-weight: 500;
    }

    .announcement-text {
      display: inline-block;
      padding-left: 100%;
      animation: marquee 15s linear infinite;
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(-100%);
      }
    }

    /* Welfare society title styling */
    .welfare-title {
      color: #fff;
      font-family: 'Arial', sans-serif;
      font-size: 20px;
      letter-spacing: 2px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      padding: 10px;
      border-radius: 10px;
      text-align: center;
    }

    /* Input animations on hover/focus */
    input {
      transition: box-shadow 0.3s ease, transform 0.2s ease;
    }

    input:hover,
    input:focus {
      box-shadow: 0 0 8px rgba(11, 74, 83, 0.4);
      transform: scale(1.02);
    }

    /* Button animation on hover/click */
    .btn {
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .btn:hover {
      transform: scale(1.05);
      box-shadow: 0 4px 15px rgba(11, 74, 83, 0.3);
    }

    .btn:active {
      transform: scale(0.95);
    }

    /* Bounce in alert messages */
    .alert__message {
      animation: bounceIn 0.6s ease;
    }

    @keyframes bounceIn {
      0% {
        transform: scale(0.8);
        opacity: 0;
      }
      60% {
        transform: scale(1.1);
        opacity: 1;
      }
      100% {
        transform: scale(1);
      }
    }

    /* Spinner styles */
    .spinner {
      border: 4px solid rgba(0, 0, 0, 0.1);
      border-top: 4px solid #0b4a53;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      animation: spin 0.8s linear infinite;
      margin: 0 auto;
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }
  </style>