Emil Moe

<body class="bg-gray-100 font-sans leading-normal tracking-normal flex items-center justify-center h-screen">
  <div class="bg-white shadow-lg rounded-lg p-8 max-w-lg w-full">
    <h1 class="text-3xl font-bold mb-4 text-center">Join Our Community</h1>
    <p class="text-gray-700 mb-6 text-center">Subscribe to get the latest updates and offers.</p>
    <form>
      <div class="mb-4">
        <label for="email" class="block text-gray-700 mb-2">Email Address</label>
        <input type="email" id="email" class="w-full p-2 border rounded" placeholder="Enter your email" required>
      </div>
      <button type="submit" class="w-full bg-blue-500 text-white p-2 rounded hover:bg-blue-400">Subscribe</button>
    </form>
  </div>
</body>