.action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  border: 1px solid #0f6f8f;
  border-radius: 8px;
  padding: 12px 20px;
  background: #0f6f8f;
  box-shadow: 0 10px 22px rgba(15, 111, 143, 0.18);
  color: #ffffff;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition:
    box-shadow 140ms ease,
    border-color 140ms ease,
    background 140ms ease;
}

.action-button:hover {
  border-color: #0f6f8f;
  background: linear-gradient(298deg, #278aab, #1283a3);
  box-shadow: 0 12px 24px rgba(15, 111, 143, 0.2);
}

.action-button:focus-visible {
  outline: 3px solid rgba(15, 111, 143, 0.22);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .action-button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
