.astro-headless-signup {
  border: 1px solid rgba(10, 77, 104, 0.15);
  border-radius: 24px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: var(--astro-white, #ffffff);
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.08);
}

.astro-headless-signup__noscript {
  color: #B91C1C;
  font-weight: 600;
}

.astro-headless-signup__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.astro-headless-signup__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.astro-headless-signup__section--single label {
  width: 100%;
}

.astro-headless-signup__section label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--astro-text-heading, #0f172a);
  font-size: 0.95rem;
  gap: 0.35rem;
}

.astro-headless-signup__section input,
.astro-headless-signup__section select {
  border-radius: 14px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  padding: 0.85rem 1rem;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.astro-headless-signup__section input:focus,
.astro-headless-signup__section textarea:focus,
.astro-headless-signup__section select:focus {
  border-color: var(--astro-primary, #0A4D68);
  box-shadow: 0 0 0 3px rgba(10, 77, 104, 0.15);
  outline: none;
}

.astro-headless-signup__actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
}

.astro-headless-signup__actions button {
  width: 100%;
  border: none;
  border-radius: 999px;
  padding: 0.9rem 2.75rem;
  font-size: 1.05rem;
  font-weight: 600;
  background: linear-gradient(120deg, #FABE3C, #F97316);
  color: #fff;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
  box-shadow: 0 20px 30px rgba(249, 115, 22, 0.35);
}

.astro-headless-signup__actions button:hover {
  transform: translateY(-2px);
}

.astro-headless-signup__caption {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.6);
}

.astro-headless-signup__status {
  margin-top: 1rem;
  font-weight: 600;
  min-height: 1.5rem;
}

.astro-headless-signup__status--loading {
  color: var(--astro-primary, #0A4D68);
}

.astro-headless-signup__status--success {
  color: #047857;
}

.astro-headless-signup__status--error {
  color: #B91C1C;
}

.astro-headless-signup__success {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.astro-headless-signup__success h3 {
  margin: 0;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--astro-text-heading, #0f172a);
}

.astro-headless-signup__success p {
  margin: 0;
  color: var(--astro-text, #374151);
  font-size: 1rem;
}

.astro-headless-signup__success-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.astro-headless-signup__primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border-radius: 999px;
  padding: 0.95rem 1.5rem;
  font-weight: 600;
  color: #fff;
  background: linear-gradient(120deg, #0A4D68, #088395);
  box-shadow: 0 15px 30px rgba(10, 77, 104, 0.25);
}

.astro-headless-signup__secondary {
  border: none;
  background: transparent;
  color: var(--astro-text-heading, #0f172a);
  font-weight: 600;
  text-align: left;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
}


