JSFiddle - React, Tailwind, and code Playground
HTML
<!-- ИМХО, правильнее использовать button, а не input -->
<button type="submit">Войти</button>
<a href="#" class="btn">Перейти на главную</a>
CSS
button,
a.btn {
/* Одинаковые стили текста (нужно будет убрать) */
font-family: sans-serif;
font-weight: 400;
font-size: 15px;
/* Основные стили */
background: #08f;
border: 1px solid #08f;
color: #fff !important;
display: inline-block;
padding: 9px;
text-decoration: none !important;
}