.container-payment-options {
  height: max-content;
  text-align: center;
  font-size: 1.5em;
  background-color: #f6f6f6;
  padding: 2em 1em;
}

.container-payment-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.employee-form button,
.container-payment-buttons button {
  background-color: #2f3848;
  width: 100%;
  padding: 0.5em 0;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 5px;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  font-size: 0.8em;
}

.employee-form {
  margin-top: 1em;
  flex-direction: column;
  gap: 1.5rem;
}

.employee-form label {
  display: flex;
  flex-direction: column;
  align-items: start;
  font-size: 0.8em;
}

.employee-form input {
  margin-top: 0.5em;
  width: 100%;
  border: 1px solid #e2e2e2;
  background-color: white;
  border-radius: 4px;
  padding: 0.2em;
  font-size: 0.8em;
}

.employee-form.was-submitted input:invalid {
  border-bottom: 5px solid red;
  box-shadow: rgb(53, 59, 64) 1px 5px 10px 0px;
}

.employee-form.was-submitted input:valid {
  border-bottom: 5px solid green;
}
.submit-epd-form {
  margin-top: 1em;
}

.on-click-back {
  text-decoration: underline;
  cursor: pointer;
  font-size: 0.8em;
  color: black;
}

.spinner-hidden {
  display: none;
}

button:disabled {
  opacity: 0.6;
  pointer-events: none;
}

.spinner-path {
  animation: dash 1.5s ease-in-out infinite;
}

@keyframes dash {
  0% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -50;
  }
  100% {
    stroke-dasharray: 100, 200;
    stroke-dashoffset: -100;
  }
}
