JSFiddle - React, Tailwind, and code Playground
HTML
<div class="feedback">
<form method="POST" action="">
<input type="text" name="name" required autocomplete placeholder="Введите свое имя">
<input type="text" name="surname" required autocomplete placeholder="Введите свою фамилию">
<input type="submit" name="enter" value="Отправить вопрос специалисту" required>
</form>
</div>
CSS
.feedback input {
display: block;
height: 25px;
margin: 25px auto 25px;
border: 1px solid #c2c2c2;
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
-khtml-border-radius: 10px;
border-radius: 10px;
text-indent: 10px;
}
.feedback input:focus{
outline:none;
border:1px solid blue;
}