/* Button */

.button {
  font-size: 16px;
  padding: 12px 40px;
  color: white;
  background: #273e39;
  text-decoration: none;
  font-weight: 700;
  transition: 400ms ease;
  transition-property: color, background;
  text-align: center;
  border: 2px solid #273e39;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
}

.button:hover {
  color: #273e39;
  background: white;
}

.button[disabled='disabled'],
.button[disabled='disabled']:hover {
  cursor: not-allowed;
  background-color: #f45e5e;
  border-color: #f45e5e;
  color: white;
}

@media (max-width: 900px) {
  .button {
    padding: 10px 30px;
  }

  .button.small {
    font-size: 12px;
    padding: 10px 12px;
  }
}

.button-secondary {
  color: #ff8f49;
  border: 2px solid #ff8f49;
  width: auto;
  padding: 10px 50px;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  transition: 400ms ease;
  transition-property: color, background;
}