Embarking on my journey into front-end web development, I encountered a task of creating a subscription form. My goal is to make the subscribe button stand out when a user clicks on the input field. Is it possible to achieve this effect using CSS alone, without resorting to JavaScript? Below is a snippet of my HTML code:
HTML:
<form>
<input type="text" placeholder="Your email ID">
<input type="submit" class="submit_button" value="Subscribe">
</form>