Когда я устанавливаю box-shadow и border-radius на входе, появляется граница как
![enter image description here](https://i.stack.imgur.com/dmhyg.png)
Как ее удалить?
<input class="input-time py-2" type="time" value="00:00"></input>
.input-time {
width: 90%;
outline: none;
text-align: center;
box-shadow: inset 0px 0px 5px rgba(50, 0, 234, 0.3);
border-radius: 40px;
}