/* ==========================================
   BUTTONS
========================================== */

.btn,
a.button,
.button,
input[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 16px 34px;

  border: none;
  border-radius: 999px;

  background: #103c5c;
  color: #fff;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  cursor: pointer;

  transition:
    background .25s ease,
    transform .25s ease,
    box-shadow .25s ease;
}

.btn:hover,
a.button:hover,
.button:hover,
input[type="submit"]:hover {
  background: #154c73;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(16,60,92,.25);
}

.btn:active,
.button:active {
  transform: translateY(0);
}