I am trying to achieve a button border effect similar to the one in the image provided. I want to create a div with a white background color, and inside that div, I need to add a button with a 15px margin or padding while making it transparent.
<div class="row">
<div class="col-md-3 col-12" style="background-color: #fff;">
<p>Thousands of Local Listings.</p>
<div style="padding: 15px; background: transparent; z-index:9999;">
<a href="" style="">START HERE</a>
</div>
</div>
</div>