/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 07 2025 | 08:34:20 */
/* Container général */
.mauticform_wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  font-family: 'Manrope', sans-serif !important;
}

/* Forcer le wrapper interne à s'afficher */
.mauticform-page-wrapper {
  display: flex !important;
  flex-wrap: wrap;
  gap: 5px;
}

/* Formulaire centré et largeur fixe */
.mauticform_wrapper form {
  width: 100%;
  max-width: 700px;
}

/* Label style */
.mauticform_wrapper label,.mauticform_wrapper h3 {
  font-size: 16px;
  color: white;
}

/* Inputs */
.mauticform_wrapper input,
.mauticform_wrapper textarea {
  width: 100%;
  height: 34px;
  border: 1px solid #ccc !important;
  padding: 5px 8px;
  font-family: 'Manrope', sans-serif;
	margin-top: 2px;
  font-size: 14px;
  box-sizing: border-box;
}

.mauticform_wrapper textarea {
  height: 100px;
  resize: vertical;
}


/* Deux colonnes pour les 4 premiers champs */
.mauticform-page-wrapper > .mauticform-row:nth-child(1),
.mauticform-page-wrapper > .mauticform-row:nth-child(2),
.mauticform-page-wrapper > .mauticform-row:nth-child(3),
.mauticform-page-wrapper > .mauticform-row:nth-child(4),
.mauticform-page-wrapper > .mauticform-row:nth-child(5),
.mauticform-page-wrapper > .mauticform-row:nth-child(6) {
  flex: 1 1 calc(50% - 10px);
}

/* Pleine largeur pour tous les suivants */
.mauticform-page-wrapper > .mauticform-row:nth-child(n+7) {
  flex: 1 1 100%;
}

/* Bouton d’envoi */
.mauticform_wrapper button {
  appearance: none;
  cursor: pointer !important;
  padding: 8px 14px 10px !important;
  background: #023e58 !important;
  border: 1px solid transparent !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  border-radius: 26px !important;
  width: 100%;
  height: 44px;
}

/* Styles pour paragraphes et erreurs */
.mauticform_wrapper p,
.mauticform_wrapper span {
  font-family: 'Manrope', sans-serif !important;
  font-size: 12px !important;
  font-weight: 500 !important;
}
