.primary-button {
  background-color: #ec870e;
  transition: all 0.2s ease-in-out;

  color: white;
  font-size: 18px;
  width: 350px;
  height: 60px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.primary-button:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  color: #ec870e;
  border: 2px solid #ec870e;
  font-weight: bold;
}

.secondary-button {
  background-color: transparent;
  transition: all 0.2s ease-in-out;

  color: white;
  font-size: 18px;
  width: 350px;
  height: 60px;
  border: 1px dashed #fff;
  border-radius: 5px;
  cursor: pointer;
}

.secondary-button:hover {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  background-color: #fff;
  color: #ec870e;
  border: 2px solid #ec870e;
  font-weight: bold;
}

@media (max-width: 600px) {
  .primary-button {
    width: 100%;
  }
}
