Forms 01
Forms 01
          
            =
          
        
      
            
<div class="bg-gray-50 text-gray-600">
  <div class="mx-auto grid grid-cols-2">
    <div class="col-span-2 md:col-span-1">
      <img src="http://demo-assets.uibak.com/themesdev/placeholder-horizontal.svg"alt="image placeholder" class="object-cover min-h-full w-full">
    </div>
    <div class="col-span-2 md:col-span-1 py-6 lg:py-12 xl:py-32 p-8 lg:px-16 flex items-center justify-center">
      <div>
        <h2 class="text-2xl sm:text-3xl md:text-4xl text-gray-700 font-medium">Join our Beta</h2>
        <p class="text-xl text-gray-600 mt-4 max-w-3xl">When, while the lovely valley teems with vapour around me, and the meridian sun strikes the upper surface of the impenetrable foliage of my </p>
        <form action="post" class="max-w-md pt-4 lg:pt-6 space-y-4">
          <input type="text" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Name">
          <input type="email" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Email">
          <input type="password" class="bg-white w-full border border-gray-300 rounded-md py-2 px-3" placeholder="Password">
          <button class="inline-block bg-gray-600 font-semibold rounded-lg py-4 px-5 lg:px-8 text-white mt-4">Join now</button>
        </form>
      </div>
    </div>
  </div>
</div>