*, *::before, *::after { cursor: default !important; }

.interest-hero {
  position: relative;
  width: 100%;
  min-height: 100vh; /* allow it to grow taller than viewport */
  overflow: auto; /* allow scrolling instead of hiding overflow */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px; /* optional, so things don't touch edges on small screens */
  box-sizing: border-box;
}
.m-0 {
    margin:0;
}
.interest-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom center;
  z-index: 1;
}

.interest-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 7, 3, 0.75);
  z-index: 2;
  pointer-events: none;
}

.interest-logo-container {
  width: 122px;
  height: 88px;
  padding-bottom: 32px;
  z-index:2;
}

  .interest-logo-container img {
    max-width: 100%;
    height: auto;
  }

.interest-form-container {
  position: relative;
  z-index: 3;
  width: 90%;
  max-width: 492px;
  min-width: 280px;
  height: auto;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 28px;
  box-sizing: border-box;
  margin-top: 100px;
}

.interest-form-title {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0px;
  color: #FFFFFF;
  margin: 0;
  padding-bottom: 8px;
}

.interest-form-subtitle {
  font-family: 'Inter 18pt 18pt', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 22px;
  letter-spacing: 0px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding-bottom: 23px;
}

.form-field-container {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
}

.form-field-title {
  font-family: 'Inter 18pt 18pt', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0.3px;
  color: #FFFFFF;
  margin-bottom: 0;
  padding-bottom: 8px;
}

.form-field-input {
  width: 100%;
  height: 47px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 12px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #FFFFFF;
  font-family: 'Inter 18pt 18pt', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0px;
  box-sizing: border-box;
}

  .form-field-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter 18pt 18pt', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0px;
  }

.form-field-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("../../images/DropdownArrow.svg");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 10px 10px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
}

  .form-field-select option {
    background-color: #090703;
    color: #FFFFFF;
  }

    .form-field-select option:hover,
    .form-field-select option:checked {
      background-color: #090703;
      color: #FFFFFF;
    }

.form-button-container {
  display: flex;
  flex-direction: column;
  padding-bottom: 20px;
  padding-top: 4px;
}

.form-submit-button {
  width: 100%;
  height: 53px;
  border-radius: 32px;
  border: none;
  background-color: #FFFFFF;
  color: #090703;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.6s ease, color 0.6s ease, transform 0.3s ease;
}

@keyframes pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.form-submit-button.success {
  background-color: #6FCF97;
  color: white;
  transform: scale(1.05);
  animation: pop 0.3s ease;
}

.form-submit-button.error {
  background-color: #EB5757;
  color: white;
  transform: scale(1.05);
  animation: pop 0.3s ease;
}

/* Loader Spinner */
.btn-loader {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #090703;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 8px;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-footer-text {
  font-family: 'Inter 18pt 18pt', sans-serif;
  font-weight: 300;
  font-size: 11px;
  line-height: 16px;
  letter-spacing: 0;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  opacity: 70%;
}

/* Make intl-tel-input fill the container */
.iti {
  width: 100%;
}

  .iti input.form-field-input {
    padding-left: 100px !important; /* !important beats v26's JS-injected inline style */
  }

/* Flag dropdown container */
.iti__flag-container {
  left: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.iti__arrow {
  border-top-color: rgba(255, 255, 255, 0.7);
}

/* Country list dropdown */
.iti__country-list {
  background-color: #090703;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
}

.iti__country:hover,
.iti__country.iti__highlight {
  background-color: rgba(255, 255, 255, 0.08);
}

.iti__country-list {
  min-width: 0 !important;
  z-index: 10001 !important;
}

@media (max-width: 576px) {
  .iti__country-list {
    max-width: calc(100vw - 4rem);
  }
}

.iti input.form-field-input:not(:placeholder-shown) ~ .iti__flag-container .iti__selected-dial-code {
  color: #FFFFFF;
}

.iti.has-input .iti__selected-dial-code {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* When a project is selected */
/*.form-field-select.has-value {
  background-color: #E8F0FE;
  color: #090703;
}*/

@media (max-width: 576px) {
  .interest-hero {
    padding: 10px;
  }

  .interest-form-container {
    padding: 16px;
    border-radius: 16px;
    margin-top: 32px;
  }

  .interest-form-title {
    font-size: 24px;
    line-height: 34px;
  }

  .interest-form-subtitle {
    font-size: 12px;
    line-height: 18px;
  }
}

.iti__selected-dial-code {
  color: #FFFFFF !important;
}

/* Dark theme for ITI dropdown on interest page */
.iti__dropdown-content {
  background-color: #090703;
  overflow: hidden;
}

.iti__search-input {
  background-color: transparent;
  color: #FFFFFF;
  border-color: rgba(255, 255, 255, 0.2) !important;
  height: 44px;
  padding: 10px 30px;
  box-sizing: border-box;
  font-size: 14px;
  width: 100%;
}

.iti__search-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}