How can I align my submit button next to the input text in a single row, with the submit button on the right side of the input text?
This is my code:
<div class="mt-12">
<input
id="grid-text"
type="text"
class="px-3 py-3 placeholder-gray-400 text-gray-700 bg-white rounded text-sm shadow focus:outline-none focus:shadow-outline w-full ease-linear transition-all duration-150"
placeholder="email"
/>
<a
href="#"
class="get-started text-white font-bold px-6 py-4 rounded outline-none focus:outline-none mr-1 mb-1 bg-red-500 active:bg-red-600 uppercase text-sm shadow hover:shadow-lg ease-linear transition-all duration-150"
>
Run!
</a>
</div>