.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"]{
  display: inline-block;
  height: 38px;
  padding: 0 30px;
  color: #555;
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  line-height: 38px;
  letter-spacing: .1rem;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border-radius: 4px;
  border: 1px solid #bbb;
  cursor: pointer;
  box-sizing: border-box;
}
.button:hover,
.button:active,
.button:focus,
button:hover,
button:active,
button:focus,
input[type="submit"]:hover,
input[type="submit"]:active,
input[type="submit"]:focus,
input[type="reset"]:hover,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="button"]:hover,
input[type="button"]:active,
input[type="button"]:focus{
    color: #333;
    border-color: #888;
    outline: 0;
}


.btn{
    font-size: 14px;
    background: #fff;
    font-weight: bold;
    text-transform: inherit;
    color: #1f54a6;
    border-radius: 25px;
}
.btn:hover{
    font-size: 14px;
    background: #1f54a6;
    font-weight: bold;
    text-transform: inherit;
    color: #fff;
    border-radius: 25px;
}