/*======================================
Theme Name: Mobytic
Theme URI: https://divicake.com/
Description: Divi Child Theme
Version: 1.0
Author: Mobytic
Author URI: https://mobytic.com/
Template: Divi
======================================*/


/* You can add your own CSS styles here. Use !important to overwrite styles if needed. */

.futura-100, h1, h1 *, h2, h2 *, h3, h3 *, h4, h4 *{
font-family: "futura-100", sans-serif !important;
font-weight: 700;
font-style: normal;
}






/* Conteneur global */
.mb-form {
  max-width: 720px;
  margin: 0 auto;
}

/* Espacement général */
.mb-form p {
  margin: 0 0 18px;
}

/* Labels */
.mb-form label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
}

/* Champs texte, email, fichier */
.mb-form .wpcf7-form-control.wpcf7-text,
.mb-form .wpcf7-textarea,
.mb-form .wpcf7-form-control.wpcf7-email,
.mb-form .wpcf7-form-control.wpcf7-file {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  background: #fff;
  padding: 14px 16px;
  font-size: 15px;
  color: #222;
  box-sizing: border-box;
  transition: all 0.2s ease;
  box-shadow: none;
  margin-top: 6px;
}

/* Textarea */
.mb-form .wpcf7-textarea {
  min-height: 60px;
  resize: vertical;
}

/* Placeholder */
.mb-form .wpcf7-form-control::placeholder {
  color: #8a8a8a;
  opacity: 1;
}

/* Focus */
.mb-form .wpcf7-form-control.wpcf7-text:focus,
.mb-form .wpcf7-form-control.wpcf7-email:focus,
.mb-form .wpcf7-form-control.wpcf7-file:focus {
  outline: none;
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

/* Champ fichier */
.mb-form .wpcf7-form-control.wpcf7-file {
  padding: 12px 14px;
  cursor: pointer;
  background: #fafafa;
}

/* Bouton */
.mb-form .wpcf7-submit,
.mb-form button.wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  border: 2px solid transparent;
  border-radius: 100px;
  background: var(--gcid-primary-color);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: none;
  padding: .3em 2em .3em .7em;
}

/* Hover bouton */
.mb-form .wpcf7-submit:hover,
.mb-form button.wpcf7-submit:hover {
  background: #333;
  transform: translateY(-1px);
}

/* Active bouton */
.mb-form .wpcf7-submit:active,
.mb-form button.wpcf7-submit:active {
  transform: translateY(0);
}

/* Spinner */
.mb-form .wpcf7-spinner {
  vertical-align: middle;
  margin-left: 10px;
}

/* Messages Contact Form 7 */
.mb-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.5;
}

/* Succès */
.mb-form form.sent .wpcf7-response-output {
  border: 1px solid #b7dfb9;
  background: #edf9ee;
  color: #1f6b24;
}

/* Erreur */
.mb-form form.invalid .wpcf7-response-output,
.mb-form form.unaccepted .wpcf7-response-output,
.mb-form form.failed .wpcf7-response-output,
.mb-form form.aborted .wpcf7-response-output {
  border: 1px solid #efb7b7;
  background: #fff1f1;
  color: #9f1d1d;
}

/* Messages d’erreur sous les champs */
.mb-form .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  color: #c62828;
}

/* Champ invalide */
.mb-form .wpcf7-not-valid {
  border-color: #c62828 !important;
}

/* Responsive */
@media (max-width: 768px) {

  .mb-form .wpcf7-text,
  .mb-form .wpcf7-email,
  .mb-form .wpcf7-textarea {
    font-size: 16px;
  }

  .mb-form .wpcf7-submit {
    width: 100%;
  }

}