.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: left;
  padding: 0px 0px;
  background-color: #243871;
  color: white;
  text-decoration: none;
  border-radius: 0px;
  border: none;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.3s;
  height: 80px; /* Ensure a fixed height for the button */
  width: 250px;
}

.button-link img {
  height: 100% !important; /* Set height to 40px, adjust as needed */
  width: auto !important; /* Maintain aspect ratio */
  margin-right: 10px;
  object-fit: contain; /* Ensure the image covers the full height without stretching */
}

.button-link:hover {
  background-color: #927E6E;
  transform: translateY(-2px);
}

.button-link span {
  text-align: center;
  font-family: sans-serif;
  letter-spacing: 0.5px;
}

/*# sourceMappingURL=button-link.css.map */