.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 26px;
  width: 300px;
  height: 48px;

  font-size: 15px;
  font-weight: 600;

  color: #04156b;
  border: 2px solid #04156b;

  border-radius: 10px;
  text-decoration: none;

  transition: all 0.3s ease;
}

.btn-outline:hover {
  background-color: #04156b;
  color: #fff;
  transform: translateY(-2px);
}