I'm currently in the process of creating a coming soon website, which you can find hosted here. However, I am having some trouble aligning the button correctly. My goal is to have it positioned to the right of the text field. How can I achieve this?
Below is my current code:
<div class="row">
<div class="col-md-4 col-md-offset-4 col-sm6-6 col-sm-offset-3 ">
<form action="//joghr.us12.list-manage.com/subscribe/post?u=0afaeb9185d575ddab99c7992&id=2e27b33636" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<div class="form-group">
<label class="sr-only" for="exampleInputEmail2">Email address</label>
<input type="email" name = "EMAIL" class="form-control transparent" placeholder="Your email here...">
<div style="position: absolute; left: -10000000px;top: -43px;float: top;overflow: auto;" aria-hidden="true"><input type="text" name="b_0afaeb9185d575ddab99c7992_2e27b33636" tabindex="-1" value=""></div>
</div>
<button type="submit" class="btn btn-danger btn-fill">Notify Me</button>
</form
</div>
</div>
</div>
Please note that I am utilizing Bootstrap for this project.