:root {
  --basecolor: #ffffff;
  --background: #ffffff;
  --text-privacy-color: #000000;
  --heading-text-color:#7A7A7A;
  --btn-enregistrer-background: #7A7A7A;
  --btn-enregistrer-color: white;
  --confirmation-background: var(--basecolor);
  --confirmation-heading-title: #000000;
  --confirmation-button: var(--basecolor);
  --confirmation-button-color:#ffffff;
  --border-input: #666;
  --color-input: #46834f;
  --error-color:red;
}

* {
  font-family: "Roboto", Sans-serif;
}

.iti {
  width: 100% !important;
}

body {
  background: var(--background);
}

/* =========================
   FORM SECTION DESKTOP
   ========================= */
.form-section {
  display: flex;
  height: 100%;
  text-align: left !important;
  vertical-align: middle;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  flex-direction: column;
  padding: 15% 0 10% 0 !important;
}

.form-section .heading-title {
  color: #000;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
}

.form-section > .form-content {
  max-width: 82%;
}

.form-section .form-group {
  padding-bottom: 36px;
}

.form-control {
  background-color: transparent;
}

.form-section input {
  font-size: 1rem;
  border: 1px solid var(--border-input);
  border-radius: 3px;
  padding: 0.5rem 1rem;
  color: #5d605d !important;
  width: 100%;
  transition: all 0.3s;
}

.form-control::placeholder {
  color: #000 !important;
}

.form-section input[type="radio"],
.form-section input[type="checkbox"] {
  width: auto;
}

.form-section .btn-enregister {
  width: 100% !important;
  background-color: #a26315 !important;
  color: var(--btn-enregistrer-color);
  font-size: 18px;
  text-transform: uppercase;
  border: none !important;
  padding: 12px;
  border-radius: 3px;
  transition: all 0.3s;
}

.error {
  color: var(--error-color);
}

/* =========================
   CONFIRMATION
   ========================= */
.confirmation {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.confirmation-body {
  background: var(--confirmation-background);
  padding-top: 40px;
}

.confirmation .heading-title {
  font-size: 20px;
  font-weight: 300;
  text-align: center;
}

button#submitButton:disabled {
  background: #80808057;
}

/* =========================
   FIX MOBILE (IMPORTANT)
   ========================= */
@media (max-width: 768px) {

  /* Annule le 100vh qui casse le scroll */
  .container-fluid {
    height: auto !important;
  }

  /* Image header mobile */
  .col-md-6 img {

    object-fit: cover;
  }

  /* Section formulaire mobile */
  .form-section {
    padding: 25px 15px !important;
  }

  .form-section > .form-content {
    max-width: 100% !important;
  }

  /* Titre mobile */
  .form-section .heading-title {
    font-size: 16px !important;
    line-height: 1.4;
    margin-bottom: 15px;
  }

  /* Champs mobile */
  .form-control,
  select {
    font-size: 15px;
    padding: 12px;
  }

  /* Bouton mobile */
  .btn-enregister {
    font-size: 16px;
    padding: 14px;
  }

  /* Texte RGPD */
  .form-section .form-group {
    padding-bottom: 20px;
    font-size: 13px;
    line-height: 1.4;
  }

  /* Modal */
  .modal-dialog {
    margin: 10px;
  }
}
