.button-container {
  display: flex;
  flex-direction: row;
  gap: 12px;
  width: auto;
}

.button-container .button {
  width: 100%;
  height: 100%;
  font-family: "Jaldi", sans-serif;
  font-size: 1.2rem;
  border: none;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.button.button-primary {
  background-color: #182747;
  color: #fefefe;
}

.button.button-secondary {
  background-color: #fefefe;
  color: #000000;
  border: 1px solid #182747;
}

.button-container .button:hover {
  background-color: #2d3f73;
  color: #fefefe;
  box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.3);
}
