/* Loader overlay */
.adigi-loader-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: inherit;
}

.adigi-spinner {
  width: 2rem;
  height: 2rem;
  border: 3px solid rgba(0, 0, 0, 0.12);
  border-top-color: #000; /* swap for brand colour */
  border-radius: 50%;
  animation: adigi-spin 0.7s linear infinite;
}

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

/* Thank you message */
.adigi-form-thankyou {
  padding: 2.5rem 1rem;
  text-align: center;
}

.adigi-thankyou-message {
  font-size: 1.0625rem;
  margin: 0;
}