Sebbe

<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-8 max-w-md w-full">
    <h1 class="text-2xl font-bold mb-6 text-center">Wedding Gift</h1>
    <p class="mb-4 text-gray-700 text-center">Please enter the password to access the wedding gift details.</p>
    <form>
        <div class="mb-4">
            <label for="password" class="block text-gray-700 mb-2">Password</label>
            <input type="password" id="password" class="w-full p-2 border rounded" placeholder="Enter your password">
        </div>
        <button type="submit" class="w-full bg-blue-500 text-white p-2 rounded hover:bg-blue-400">Access Gift</button>
    </form>
  </div>
</body>