自分がやるなら、疑似要素で少し小さめのボックスを生成して、それに角丸ボーダーを付けるかな。
html
1<div class="btn">ボタン</div>
css
1div.btn {
2 background-color: cornflowerblue;
3 width: 200px;
4 font-size: 30px;
5 color: white;
6 text-align: center;
7 padding: 10px;
8 border-radius: 50px;
9 position: relative;
10}
11div.btn::before {
12 content: "";
13 position: absolute;
14 display: block;
15 top: 6px;
16 bottom: 6px;
17 left: 6px;
18 right: 6px;
19 border: 2px solid white;
20 border-radius: 50px;
21}