0👍
Make a div and move your booknow id on that div.
<div id="booknow">
<form class="add-comment custom-form" @submit="checkForm" action="/something" method="post" novalidate="true">
<fieldset>
<label><i class="fa fa-user-o"></i></label>
<input type="text" placeholder="Your Name *" value="" v-model="name" id="name"/>
<div class="clearfix"></div>
<label><i class="fa fa-envelope-o"></i> </label>
<input type="text" placeholder="Email Address*" value="" v-model="email" id="email"/>
</fieldset>
<button class="btn big-btn color-bg flat-btn">Book Now<i class="fa fa-angle-right"></i></button>
</form>
</div>
Source:stackexchange.com