GALIBERT

<body class="bg-gray-100 font-sans leading-normal tracking-normal h-screen flex items-center justify-center">
  <div class="bg-white shadow-lg rounded-lg p-4 max-w-2xl w-full">
    <form class="flex items-center space-x-4">
        <div class="flex-1">
            <label for="name" class="sr-only">Name</label>
            <input type="text" id="name" class="w-full p-2 border rounded" placeholder="Name">
        </div>
        <div class="flex-1">
            <label for="references" class="sr-only">References</label>
            <input type="text" id="references" class="w-full p-2 border rounded" placeholder="References">
        </div>
        <button type="submit" class="bg-blue-500 text-white p-2 rounded hover:bg-blue-400">
            <i class="iconoir-search text-xl"></i>
            <span class="ml-1">Search</span>
        </button>
    </form>
  </div>
</body>