 
 * {
      margin: 0px; 
      padding: 0px; 
      box-sizing: border-box;
  }
  
 /* body, html {
      height: 100%;
      font-family: Poppins-Regular, sans-serif;
     /* background-color: #FFF;
      
  }*/
  body{
  /* background-image: url("img/learning.jpg");*/
    height: 100%;
    background-repeat:no-repeat;
    background-size: cover;
    background-color: rgba(210, 210, 210,0.9);
    
  }

  /* Progressbar */
.progressbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  margin: 2rem 0 4rem;
}

.progressbar::before,
.progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #dcdcdc;
  z-index: -1;
}

.progress {
  background-color: rgb(11, 110, 69);
  width: 0%;
  transition: 0.3s;
}

.progress-step {
  width: 2.1875rem;
  height: 2.1875rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.progress-step::before {
  counter-increment: step;
  content: counter(step);
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 0.5rem);
  font-size: 0.85rem;
  color: #666;
}

.progress-step-active {
  background-color: rgb(11, 110, 69);
  color: #f3f3f3;
}
  
  
  
  .form-step {
    display: none;
  }

  .form-step-active {
    display:block;
  }


  .form-container {
    width: 100%;  
    min-height: 100vh;
   /* display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: transparent;
    position: relative;
    z-index: 1;
  }

   .wrap-form {
    width: 1000px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    z-index: -1;
  }

  .inscription-form-head {
    
    width: 100%;
    position: relative;
    z-index: 1;
    /*display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;*/
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
  
    background-repeat: no-repeat;
    background-size: cover;
    background-position: inherit;
    padding: 64px 15px 64px 15px;
  }



  .inscription-form-head::before {
    content: "";
    display: block;
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background-color: rgba(54,84,99,0.1);*/
  }

  .inscription-form {
    width: 100%;
   /* display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;*/
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 43px 88px 57px 190px;
  }

  .group-input {
    width: 100%;
    position: relative;
    /*border-bottom: 1px solid #b2b2b2;*/
    margin-bottom: 26px;
  }

  
  

.custom-alert {
  padding: 5px 5px;
  display: none;
}