.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.alphaville-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.alphaville-form-group {
  width: 100%;
  margin-bottom: 12px;
}

.alphaville-form-control {
  display: block;
  width: 100%;
  height: 43px;
  padding: 0 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: rgb(94, 108, 123);
  background-color: #fff;
  border: 0;
  border-radius: 6px;
  box-sizing: border-box;
}

select.alphaville-form-control {
  cursor: pointer;
}

.alphaville-form-control::placeholder {
  color: rgba(94, 108, 123, 0.5);
}

.alphaville-form-btn {
  display: block;
  width: 100%;
  height: 54px;
  margin-top: 4px;
  border: 0;
  border-radius: 34px 0px;
  background-color: rgb(255, 110, 55);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: background-color .25s ease;
}

.alphaville-form-btn:hover:not(:disabled) {
  background-color: #ffb358;
}

.alphaville-form-btn:disabled {
  opacity: .75;
  cursor: default;
}

.alphaville-form-feedback {
  margin-top: 10px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
  min-height: 18px;
}

.alphaville-form-feedback.success {
  color: #4ade80;
}

.alphaville-form-feedback.error {
  color: #ff8a65;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
