Просто установите border-style: solid
!
.wrapper {
width: 200px;
height: 25px;
}
.circleInput {
border-width: 2px;
border-color: rgb(230,230,230);
outline-width: 0;
border-style: solid;
border-radius: 3.5vh;
width: 100%;
height: 100%;
text-align: center;
font-size: 1.0vw;
background-color: white;
-webkit-appearance: none;
}
<div class="wrapper">
<input class="circleInput" type="text" />
</div>