<section class="p-6 bg-white rounded-lg shadow-sm">
<div class="max-w-md mx-auto space-y-5">
<!-- Domain with .com suffix -->
<div>
<label for="domain" class="block text-sm font-medium text-gray-700 mb-1">
Domain Name
</label>
<div class="flex rounded-md shadow-sm">
<input
type="text"
id="domain"
placeholder="example"
class="flex-1 min-w-0 block w-full px-3 py-2 rounded-none rounded-l-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
/>
<span class="inline-flex items-center px-3 rounded-r-md border border-l-0 border-gray-300 bg-gray-50 text-gray-500 text-sm">
.com
</span>
</div>
</div>
<!-- Weight with kg suffix -->
<div>
<label for="weight" class="block text-sm font-medium text-gray-700 mb-1">
Weight
</label>
<div class="flex rounded-md shadow-sm">
<input
type="number"
id="weight"
placeholder="0"
class="flex-1 min-w-0 block w-full px-3 py-2 rounded-none rounded-l-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
/>
<span class="inline-flex items-center px-3 rounded-r-md border border-l-0 border-gray-300 bg-gray-50 text-gray-500 text-sm">
kg
</span>
</div>
</div>
<!-- Username with @twitter suffix -->
<div>
<label for="twitter" class="block text-sm font-medium text-gray-700 mb-1">
Twitter Username
</label>
<div class="flex rounded-md shadow-sm">
<input
type="text"
id="twitter"
placeholder="username"
class="flex-1 min-w-0 block w-full px-3 py-2 rounded-none rounded-l-md border border-gray-300 focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-blue-500"
/>
<span class="inline-flex items-center px-3 rounded-r-md border border-l-0 border-gray-300 bg-gray-50 text-gray-500 text-sm">
@twitter.com
</span>
</div>
<p class="mt-1 text-xs text-gray-500">
Enter your username without the @ symbol
</p>
</div>
</div>
</section>