.button {
  border: 2px solid var(--theme-secondary-color);
  outline: 2px solid var(--theme-secondary-color) !important;
  outline-offset: -2px;
  border-radius: 8px;
  cursor: pointer;
  display: inline-block;
  transition: outline-offset 100ms ease, background-color 300ms ease-in-out, color 500ms ease-out;
}

.button,
.button.disabled,
.button.disabled:focus,
.button.disabled:hover,
.button[disabled],
.button[disabled]:focus,
.button[disabled]:hover {
  background-color: var(--theme-primary-color);
  color: #ffffff;
}
.button:focus, .button:hover {
  background-color: var(--theme-secondary-color);
  color: #ffffff;
  outline-offset: 2px;
}


/*** Button theme override ***/

.button {
  font-size: 1.2em;
  font-weight: 500;
  padding: 1rem 2rem;
  margin: 1rem auto;
}
