JSFiddle - React, Tailwind, and code Playground
by Sergey khorev
HTML
<div class="profile_address__wrapper mt-64">
<div class="title__wrapper">
<h3 class="subtitle">Мои контакты</h3>
<div class="account_button__wrapper_save">
<div class="input_wrapper">
<label for="name" class="label small__text darkgrey__text">Имя</label>
<input type="text" id="name" class="input profile__input medium__text" placeholder="Иван">
</div>
<div class="input_wrapper">
<label for="phone" class="label small__text darkgrey__text">Телефон</label>
<input type="tel" id="phone" class="input profile__input medium__text" placeholder="+7 (999) 123-45-67">
</div>
</div>
</div>
</div>
CSS
.account_button__wrapper_save {
display: flex;
align-items: center;
}
.account_button__wrapper_save .input_wrapper {
width: 50%;
margin-right: 10px;
}
.account_button__wrapper_save .input_wrapper:last-child {
margin-right: 0;
}