Complete the code to add a rounded border to the input field using Tailwind CSS.
<input type="text" class="border [1] p-2" placeholder="Enter your name">
The rounded-lg class adds a smooth rounded border to the input field.
Complete the code to make the input field full width and add padding inside it.
<input type="email" class="[1] p-3 border rounded" placeholder="Email address">
The w-full class makes the input take the full width of its container.
Fix the error in the code to add a blue border on focus for the input field.
<input type="password" class="border rounded p-2 focus:[1]" placeholder="Password">
focus: prefix.The focus:border-blue-500 class changes the border color to blue when the input is focused.
Fill both blanks to create a textarea with a gray background and padding.
<textarea class="[1] [2] border rounded" placeholder="Your message"></textarea>
The bg-gray-100 class adds a light gray background, and p-4 adds padding inside the textarea.
Fill all three blanks to create a submit button with green background, white text, and rounded corners.
<button class="[1] [2] [3] font-bold py-2 px-4">Submit</button>
bg-green-500 sets a green background, text-white makes the text white, and rounded adds rounded corners.