.popupWrap {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  backdrop-filter: blur(4px);
  background-color: rgba(0, 0, 0, 0.8);
}

.popup {
  max-width: 480px;
  width: 100%;
  padding: 2.5rem 2rem 2rem;
  border-radius: 12px;
  border: 1px solid #E3EAF5;
  background: #FDFCFF;
  box-shadow: 0 19px 60px -10px rgba(106, 133, 171, 0.25);
  text-align: center;
}

.productLogo {
  width: 5rem;
  margin-bottom: 2.5rem;
}

.inputWrap {
  margin-bottom: 2rem;
  text-align: start;
}

.inputLabel {
  color: #4F406E;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: -0.28px;
  margin-bottom: 8px;
}

.heroSectionFormInput {
  padding: 12px 16px;
  border-radius: 4px;
  border: 0.5px solid #DFD0FB;
  background: #F3F0F9;
  width: 100%;
  color: #1B1624;
  font-size: 14px;
}

.heroSectionFormInput::placeholder {
  color: #7C6F94;
}

.heroSectionFormInputError {
  color: red;
  font-size: 0.625rem;
  margin-bottom: 0px;
  padding-left: 10px;
  height: 0;
}

.heroSectionFormInputValidating {
  color: green;
  font-size: 0.625rem;
  margin-bottom: 0px;
  padding-left: 10px;
  height: 0;
}

.heroSectionFormBtn {
  padding: 16px 12px;
  border-radius: 6px;
  background: #504ee4;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14px;
  text-transform: uppercase;
  width: 100%;
  border: none;
  cursor: pointer;
}