Brutalist Login Form
A complex, responsive login form designed in a brutalist style with earth tones, tailored for e-commerce applications, featuring dark mode support.
HTML Code
<div class="min-h-screen flex items-center justify-center bg-gray-300 dark:bg-gray-800">
<div class="bg-white dark:bg-gray-700 p-8 rounded-lg shadow-lg w-full max-w-md">
<h2 class="text-3xl font-bold text-gray-800 dark:text-white text-center mb-6">Login</h2>
<form>
<div class="mb-4">
<label class="block text-lg font-medium text-gray-700 dark:text-gray-300" for="email">Email</label>
<input type="email" id="email" class="mt-1 block w-full p-2 border border-gray-300 dark:border-gray-600 rounded-md focus:outline-none focus:ring focus:ring-green-500 dark:focus:ring-green-600" required>
</div>
<div class="mb-4">
<label class="block text-lg font-medium text-gray-700 dark:text-gray-300" for="password">Password</label>
<input type="password" id="password" class="mt-1 block w-full p-2 border border-gray-300 dark:border-gray-600 rounded-md focus:outline-none focus:ring focus:ring-green-500 dark:focus:ring-green-600" required>
</div>
<div class="flex justify-between mb-6">
<div class="flex items-center">
<input type="checkbox" id="remember" class="mr-2 leading-tight">
<label for="remember" class="text-sm text-gray-600 dark:text-gray-400">Remember Me</label>
</div>
<a href="#" class="text-sm text-green-600 hover:underline dark:text-green-400">Forgot Password?</a>
</div>
<button type="submit" class="w-full py-2 text-white bg-green-600 rounded-md hover:bg-green-700 dark:bg-green-500 dark:hover:bg-green-400 transition duration-150 ease-in-out">Login</button>
</form>
<div class="mt-4 text-center">
<p class="text-sm text-gray-600 dark:text-gray-400">Don't have an account? <a href="#" class="text-green-600 hover:underline dark:text-green-400">Sign Up</a></p>
</div>
<div class="mt-8 text-center">
<img src="https://picsum.photos/100" alt="Random" class="rounded-full mx-auto">
<p class="mt-2 text-xs text-gray-500 dark:text-gray-400">User Avatar Loaded Randomly</p>
</div>
</div>
</div>
Related Components
Login Form Component - Dark Mode Vibrant
A complex, responsive login form component designed for business/corporate use with a vibrant color scheme and full dark mode support, aiming to reduce eye strain.
Login Form Component
Skeuomorphic Login Form for Social Media with Pastel Colors, Responsive, and Dark Mode Support. The form features a subtle 3D effect on inputs and buttons, mimicking physical elements. Shadows and gradients are used to enhance the skeuomorphic feel. Inputs have a soft inset shadow, and buttons have a raised, clickable appearance. The pastel color scheme transitions smoothly to a darker, muted version in dark mode, maintaining readability and visual comfort. Responsive design ensures usability across devices.
Neumorphism Login Form
A Login Form component designed with Neumorphism style, featuring responsive design and dark theme support using Tailwind CSS.