Поскольку текст играет роль в определении выравнивания, убедитесь, что у вас всегда будет хотя бы похожая вещь, например пустой псевдоэлемент с такими же свойствами:
.wrap {
display: grid;
grid-template-columns: auto auto;
background: orange;
}
input[type='radio'] {
margin: 0 9px;
/*vertical-align: middle; change this to what you want to control the alignment */
}
.bbtn {
display: inline-block;
line-height: 25px;
}
.wrap> div::after{
content:"";
line-height:25px; /* the same as the one used with bbtn */
}
<div class='wrap'>
<div>
<input type='radio' name='aradio' value='a' checked>
</div>
<div>
<input type='radio' name='aradio' value='b'>
<div class='bbtn'>LOREM</div>
</div>
</div>