Seeking assistance with making the footer of my website responsive using a combination of Bootstrap and custom CSS.
I am aiming for a result similar to the examples shown below, both optimized for Desktop and Mobile platforms. Your help in achieving this is greatly appreciated.
Desktop
https://i.stack.imgur.com/MgHvn.jpg
Mobile
https://i.stack.imgur.com/duzhH.jpg
Below is the current code snippet:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<footer>
<div class="container">
<div class="row">
<div class="col-12">
<h3 >Connect With Us</h3>
<div class="border-bottom"></div>
</div>
</div>
<div class="row padding-top-15px">
<div class="col-md-8 col-sm-12 col-xs-12">
<form>
<input type="text" placeholder="Name" required />
<input type="email" placeholder="Email" required />
<input type="submit" value="Subscribe" class="btn swatch-1">
<a href="#" data-toggle="modal" data-target="#invitefriendModal" class="btn">Refer a Friend</a>
</form>
</div>
<div class="col-md-4 col-sm-12 conl-xs-12">
<div class="footer-social">
<a href="#" class="fa fa-facebook"></a>
<a href="#" class="fa fa-google"></a>
<a href="#" class="fa fa-linkedin"></a>
<a href="#" target="_blank" >Legal</a> <span>Accreditation Number</span>
</div>
</div>
</div>
</div>
</footer>