<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* form deve essere position:relative per contenere lâ€™overlay */
.my-ajax-form {
  position: relative;
}

/* overlay */
.form-overlay {
  display: none; /* default nascosto */
  position: absolute;
  inset: 0; /* top+right+bottom+left:0 */
  background: rgba(0, 0, 0, 0.5);
  align-items: center; /* centra spinner */
  justify-content: center;
  z-index: 10;
}

/* spinner cerchio */
.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* bottoni disabilitati */
.my-ajax-form [type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Hero form styles */
.cont-hero-form {
  border-radius: 15px;
  background: #0f4651;
  padding: 30px;
  display: flex;
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-direction: column;
}

.cont-hero-form form {
  max-width: 100%;
  padding: 10px 20px;
  text-align: left;
  border-radius: 5px;
  background-color: transparent;
}

#form.section-form form {
  max-width: 100%;
  padding-top:20px;
  text-align: left;
  border-radius: 5px;
  background-color: transparent;
}


.cont-hero-form label, #form.section-form label {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.cont-hero-form input, #form.section-form input {
  font-size: 1.4rem;
  width: 100%;
  border-radius: 30px;
  border: none;
  padding: 10px 30px;
}

.cont-hero-form input[type="submit"], #form.section-form input[type="submit"] {
  background-color: #0f4651;
  color: #fff;
  padding: 10px 15px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  border: 1px solid #fff;
  text-transform: uppercase;
}

.cont-hero-form select, #form.section-form select {
  width: 100%;
  border-radius: 30px;
  border: none;
  margin-bottom: 10px;
  padding: 10px 30px;
  font-size: 12px;
  margin: 10px 0;
  background-color: #fff;
}

.label.privacy,
.label.marketing {
  display: block;
  margin-bottom: 5px;
  width: 100%;
  border-radius: 30px;
}

.label.privacy input,
.label.marketing input {
  width: unset!important;
  font-size: 1.4rem!important;
}

.label.privacy span,
.label.marketing span {
  font-size: 12px!important;
  color: #fff!important;
}
</pre></body></html>