 /* Style the form */
 #regForm {
    position: relative;
    margin-top: 30px;
    background-color: #f1f1f1;
    margin: 50px auto;
    padding: 40px;
    width: 85%;
    min-width: 300px;
    line-height: 40px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.2);
  }
  
  .h4form {
    text-transform: uppercase;
  }
  
  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #ffdddd;
  }
  
  /* Hide all steps by default: */
  .tab {
    display: none;
  }
  
  /* Make circles that indicate the steps of the form: */
  .step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
  }
  
  /* Mark the active step: */
  .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-color: #4CAF50;
  } 

  .form-fleurs {
      display: block;
      height: calc(1.5em + .75rem + 2px);
      padding: .375rem .75rem;
      font-size: 1rem;
      font-weight: 400;
      line-height: 1.5;
      color: #495057;
      background-color: #fff;
      background-clip: padding-box;
      border: 1px solid #ced4da;
      border-radius: .25rem;
      transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    }

  .contentleft {
    text-align: left !important;
  }

  li {
    padding: 10px;
    font-size: 18px;
    font-weight: 400;
  }

  .form-text {
    color: #696969;
    text-align: center !important;
  }

  .form-check-sign {
    padding-top: 1rem;
  }

  .title { 
    background-color: black;
    color: #fff; 
    display: inline;
    padding: 0.2rem;
    font-weight: 600;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }