.button-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 25px;
}

.button {
  border: transparent;
  border-radius: 8px;
  background-color: rgba(0, 163, 108, 0.6);
  color: #f4f3f2;
  padding: 0.75em 0.75em;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  font-size: 20px;
  /* box-shadow: 7.4px 14.9px 14.9px hsl(0deg 0% 0% / 0.27); */
}

.button.secondary {
  border: 1px solid rgba(244, 243, 242, 0.8);
  background-color: transparent;
  color: rgba(244, 243, 242, 0.8);
}

.button.fixed {
  width: 80%;
}

@media screen and (min-width: 768px) {
  .button {
    margin-bottom: 0;
  }

  .button.fixed {
    width: 250px;
  }
}

.button:disabled {
  cursor: default;
  opacity: 0.5;
}

.button:not(:disabled):hover {
  opacity: 0.7;
}

.back-button {
  top: 20px;
  left: 20px;
  width: 100px;
  margin-bottom: 0;
  position: absolute;

  text-align: start;
  font-size: 16px;

  background-color: transparent;
  border: 1px solid transparent;
  color: #f4f3f2;

  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

.back-button:hover {
  opacity: 0.6;
}

.back-button.abandon {
  width: 100px;
  padding: 0.25em 0.5em;
  text-align: center;
  border-radius: 8px;
  background-color: rgba(227, 34, 39, 0.2);
  border: 1px solid rgba(227, 34, 39, 0.5);
}

@media screen and (min-width: 768px) {
  .back-button {
    font-size: 20px;
    top: 50px;
    left: 50px;
  }
  .back-button.abandon {
    width: 125px;
    font-size: 18px;
    padding: 0.35em 0.25em;
  }
}
