Here is my codepen: https://codepen.io/victoreugen2002/pen/RwgdKav The problem is that I can't make the button transparent.
body {
margin-top: 60px;
}
.btn.btn-primary {
color: #ffffff;
position: relative;
background: #000000;
padding: 10px 30px;
border-bottom-left-radius: 10% 40%;
overflow: hidden;
border-top-right-radius: 10% 40%;
}
.btn.btn-primary:before {
content: "";
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
margin: -4px;
border-radius: inherit;
background: linear-gradient(to right, #ef4a25 0%, #fba72f 100%);
overflow: hidden;
}
<a class="btn btn-primary" href="#">Contact Us</a>