In the process of creating a long bootstrap card containing two rows of information including a title and description, I encountered an alignment issue with the button. The button is intended to be aligned to the right of the card while remaining centered. Here is the current HTML code segment for the button:
<div class="card card-body">
<h4>I'm a Card</h4>
<p>The button should be central, at the end of this card.</p>
<input type="button"
class="btn btn-outline-primary align-self-end"
value=".align-self-end">
</div>
If you view the Codepen link provided (here), you'll notice that the button increases the height of the card by being placed at the bottom. How can I resolve this so that the button remains at the center end of the card without affecting its overall height? Thank you.