.container {
  max-width: 900px;
  overflow: auto;
}

.description-section {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.body-section {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

/* Police uniforme pour tout le formulaire */
#calendly-register-form,
#calendly-register-form * {
  font-family: 'Lato', Arial, sans-serif;
}

/* Layout du formulaire en grille */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
  font-size: 18px;
}

input, select, textarea {
  width: 100%;
  padding: 15px!important;
  border: 1px solid #000!important;
  border-radius: 8px!important;
  font-size: 16px!important;
  box-sizing: border-box;
  background-color: #fff!important;
  transition: border-color 0.3s ease;
}

textarea {
  height: 80px!important;
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: #007cba;
}

select {
  background-color: white;
  cursor: pointer;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* Checkbox de confidentialité */
.privacy-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  font-size: 13px;
  line-height: 1.3;
  color: #2c3e50;
}

.privacy-checkbox input[type="checkbox"] {
  width: auto!important;
  height: 16px;
  margin: 0;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
}

.privacy-checkbox label {
  margin: 0;
  cursor: pointer;
  font-weight: normal;
}

.privacy-link {
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Informations de confidentialité */
.privacy-info {
  margin: 10px 0 15px 0;
  font-size: 12px;
  line-height: 1.3;
  color: #666;
  text-align: justify;
}

/* Styles pour les états de validation */
.field-error {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
}

.field-success {
  border-color: #28a745 !important;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25) !important;
}

.field-error-message {
  color: #dc3545;
  font-size: 12px;
  margin-top: 5px;
  font-weight: 500;
}

/* Bouton Continuer */
.form-actions {
  margin-top: 15px;
  text-align: right;
}

.btn-continue {
  width: auto;
  padding: 10px 20px;
  background-color: #007cba;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-continue:hover {
  background-color: #005a87;
}

.btn-continue:disabled {
  background-color: #6c757d;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Style pour la checkbox en erreur */
.privacy-checkbox.field-error {
  border: 2px solid #dc3545;
  padding: 10px;
  border-radius: 8px;
  background-color: rgba(220, 53, 69, 0.05);
}

button[type="submit"] {
  /* margin-top: 15px; */
  /* padding: 20px 35px!important; */
}

button[type="submit"]:focus {
  outline: 0;
  opacity: 0.5;
}

/* Styles pour les boutons de type de demande */
.form-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.btn-type {
  height: auto!important;
  width: 80%!important;
  padding: 20px 35px!important;
  background-color: #ff6b35;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn-type:hover {
  background-color: #e55a2b;
}

.btn-type:focus {
  outline: 0;
  opacity: 0.8;
}

.btn-type:active {
  transform: translateY(1px);
}

@media (max-width: 1250px) {
  input, select, textarea {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
  .body-section {
    margin: 30px 50px;
  }
  form {
    text-align: initial;
  }
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .form-field.full-width {
    grid-column: 1;
  }
  
  .body-section {
    margin: 20px 30px;
  }
  
  .form-buttons {
    flex-direction: column;
    gap: 10px;
  }
  
  .btn-type {
    width: 100% !important;
    padding: 15px 25px !important;
  }
}

@media (max-width: 645px) {
  .body-section {
    margin: 15px 20px;
  }
  
  input, select, textarea {
    padding: 20px !important;
    font-size: 16px;
  }
  
  .form-field label {
    font-size: 16px;
  }
  
  .privacy-checkbox {
    font-size: 14px;
  }
  
  .privacy-info {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .body-section {
    margin: 10px 15px;
  }
  
  input, select, textarea {
    padding: 18px !important;
  }
  
  .btn-type {
    padding: 12px 20px !important;
    font-size: 14px;
  }
}
/*# sourceMappingURL=register.css.map */