<!-- <!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>mail-3.inworka.com</title>
    <script src="https://cdn.tailwindcss.com"></script>
  </head>
  <body class="bg-gray-100 flex items-center justify-center min-h-screen">
    <div class="bg-white p-8 rounded shadow-md text-center">
      <h1 class="text-4xl font-bold mb-4 text-gray-800">mail-3.inworka.com</h1>
      <p class="text-gray-600">
        Welcome to <span class="font-semibold">mail-3.inworka.com</span>. Please log in with your administration panel.
      </p>
    </div>
  </body>
</html> -->

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <title>mail-3.inworka.com</title>
    <!-- Include Tailwind CSS -->
    <script src="https://cdn.tailwindcss.com"></script>
  </head>
  <body class="bg-gradient-to-r from-blue-500 to-purple-600 min-h-screen flex flex-col">
    <!-- Navigation Bar -->
    <nav class="bg-white shadow">
      <div class="container mx-auto px-6 py-4 flex justify-between items-center">
        <div class="text-2xl font-bold text-gray-800">mail-3.inworka.com</div>
        <div class="flex space-x-4">
          <a href="#" class="text-gray-600 hover:text-blue-500 transition duration-300">Home</a>
          <a href="#" class="text-gray-600 hover:text-blue-500 transition duration-300">About</a>
          <a href="#" class="text-gray-600 hover:text-blue-500 transition duration-300">Contact</a>
        </div>
      </div>
    </nav>

    <!-- Hero Section -->
    <main class="flex-grow flex items-center justify-center">
      <div class="text-center text-white px-6">
        <h1 class="text-6xl font-extrabold mb-4 drop-shadow-lg">mail-3.inworka.com</h1>
        <p class="text-xl mb-8">
          Welcome to <span class="font-semibold">mail-3.inworka.com</span>. Please log in with your administration panel.
        </p>
        <a
          href="#"
          class="inline-block bg-white text-blue-500 font-semibold px-8 py-4 rounded-full shadow-lg hover:bg-gray-100 transition duration-300"
        >
          Go to Admin Panel
        </a>
      </div>
    </main>

    <!-- Footer -->
    <footer class="bg-white">
      <div class="container mx-auto px-6 py-4 text-center text-gray-600">
        © 2025 mail-3.inworka.com. All rights reserved.
      </div>
    </footer>
  </body>
</html>


