/* Immobleu Leads - formulaire sobre */
.immobleu-form-wrap { max-width: 480px; margin: 0 auto; }
.immobleu-form {
  display: flex; flex-direction: column; gap: 14px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.immobleu-form-title {
  margin: 0; font-size: 22px; font-weight: 700; color: #111827; letter-spacing: -0.02em;
}
.immobleu-form-subtitle {
  margin: -6px 0 8px; font-size: 14px; color: #6b7280; line-height: 1.5;
}
.immobleu-row label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: 13px; color: #374151; font-weight: 500;
}
.immobleu-row .req { color: #ef4444; }
.immobleu-row input[type=text],
.immobleu-row input[type=tel],
.immobleu-row input[type=email],
.immobleu-row textarea {
  width: 100%; box-sizing: border-box;
  padding: 11px 14px;
  font-size: 14px; font-family: inherit;
  color: #111827; background: #f9fafb;
  border: 1px solid #e5e7eb; border-radius: 8px;
  transition: border-color .15s, background .15s;
}
.immobleu-row input:focus,
.immobleu-row textarea:focus {
  outline: none;
  border-color: #2563eb; background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.immobleu-row textarea { resize: vertical; min-height: 80px; }
.immobleu-rgpd label {
  flex-direction: row; align-items: flex-start; gap: 8px;
  font-size: 12px; color: #6b7280; line-height: 1.5; font-weight: 400;
}
.immobleu-rgpd input[type=checkbox] { margin-top: 2px; flex-shrink: 0; }
.immobleu-submit {
  padding: 13px 24px; margin-top: 6px;
  background: #111827; color: #fff;
  border: none; border-radius: 8px;
  font-size: 14px; font-weight: 600; cursor: pointer;
  transition: background .15s;
}
.immobleu-submit:hover:not(:disabled) { background: #1f2937; }
.immobleu-submit:disabled { opacity: .6; cursor: not-allowed; }
.immobleu-message {
  padding: 12px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 500;
}
.immobleu-message.success { background: #d1fae5; color: #065f46; }
.immobleu-message.error   { background: #fee2e2; color: #991b1b; }
