I have a button within my Laravel application
<a href="{{ url('/product') }}" class="btn btn-default px-5 mt-3 rounded subscribe" role="button">{{ __('More info') }}</a>
However, I am encountering an issue where the text inside the button is not properly centered
https://i.sstatic.net/VQ8cL.png
This is how the button currently appears, with the text not being centered correctly:
In my CSS, I have the following code for the class "subscribe":
.subscribe {
background-color: #5ABDBA;
color: #fff;
border-radius: 40px!important;
height: 43px;
text-transform: capitalize!important;
vertical-align: middle;
}
It is important to note that I am using Bootstrap 4 for this project.