<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-100 h-screen w-screen justify-center flex items-center ">
<div class="w-80 ">
<h2 class="text-lgfont-bold text-center mb-4">Login</h2>
<div class="bg-white shadow-md rounded-md p-4 space-y-6">
<div >
<label class="text-sm text-gray-700 mb-1" id="email" for="email">Email</label>
<input class="appearance-none block w-full bg-gray-50 text-gray-700 border border-gray-200 rounded-full py-3 px-4 leading-tight focus:outline-none focus:bg-white focus:border-gray-500" id="email" type="text">
</div>
<div>
<label id="password" for="password">Senha</label>
<input class="appearance-none block w-full bg-gray-50 text-gray-700 border border-gray-200 rounded-full py-3 px-4 leading-tight focus:outline-none focus:bg-white focus:border-gray-500" id="password" type="text">
</div>
<div>
<button class=" w-full bg-sky-500 hover:bg-sky-700 px-5 py-2 text-sm leading-5 rounded-full font-semibold text-white">
Save changes
</button>
</div>
</div>
</div>
</body>
</html>
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.