
*{
  margin: 0;
  padding: 0;
  outline: none;
 
}
.progress{
    width:400px;
}
.progress-bar{
    background-color:red !important;
}
::selection{
  color: #fff;
  background: #d43f8d;
}
.progress-form-container{
  width: 550px;
  background: transparent;
  border-radius: 5px;
  padding: 50px 35px 10px 35px;
}
.progress-form-container header{
  font-size: 35px;
  font-weight: 600;
  margin: 0 0 30px 0;
}
.progress-form-container .form-outer{
  width: 100%;
  overflow: hidden;
}
.progress-form-container .form-outer form{
  display: flex;
  width: 400%;
}
.form-outer form .page{
  width: 25%;
  transition: margin-left 0.3s ease-in-out;
}
.form-outer form .page .title{
  /* text-align: center; */
  font-size: 26px;
  font-weight: 600;
  color:#fff;
  margin-bottom:20px;
  margin-top:20px;
  width:400px
}
.form-outer form .page .field{
  width: 550px;
  height: 45px;
  margin: 45px 0;
  display: flex;
  position: relative;
  /* justify-content: center; */
}
form .page .field .label{
  position: absolute;
  top: -30px;
  font-weight: 500;
}
form .page .field input{
  height: 100%;
  width: 100%;
  border: 1px solid lightgrey;
  border-radius: 5px;
  padding-left: 15px;
  font-size: 18px;
}
form .page .field select{
  width: 100%;
  padding-left: 10px;
  font-size: 17px;
  font-weight: 500;
}
form .page .field button{
  width: 200px;
  height: calc(100% + 5px);
  border: none;
  background: #EE7B1C;
  margin-top: -20px;
  border-radius: 5px;
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.5s ease;
}
.back-button{
    width:50px!important;;
    border-radius:50% !important;
}
form .page .field button:hover{
  background: #000;
}
form .page .btns button{
  margin-top: -20px!important;
}
form .page .btns button.prev{
  margin-right: 3px;
  font-size: 17px;
  border-radius:50%;
  width:50px;
  margin-right:20px;
}
form .page .btns button.next{
  margin-left: 3px;
}
.progress-form-container .progress-bar-1{
  display: flex;
  margin: 16px 0;
  user-select: none;
}
.progress-form-container .progress-bar-1 .step{
  text-align: left;
  width: 100%;
  position: relative;
}
.progress-form-container .progress-bar-1 .step p{
  font-weight: 500;
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
}
.progress-bar-1 .step .bullet{
  height: 25px;
  width: 25px;
  border: 2px solid #000;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  transition: 0.2s;
  font-weight: 500;
  font-size: 17px;
  line-height: 25px;
}
.progress-bar-1 .step .bullet.active{
  border-color: #d43f8d;
  background: #d43f8d;
}
.progress-bar-1 .step .bullet span{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.progress-bar-1 .step .bullet.active span{
  display: none;
}
.progress-bar-1 .step .bullet:before,
.progress-bar-1 .step .bullet:after{
  position: absolute;
  content: '';
  bottom: 11px;
  right: -51px;
  height: 3px;
  width: 44px;
  background: #262626;
}
.progress-bar-1 .step .bullet.active:after{
  background: #d43f8d;
  transform: scaleX(0);
  transform-origin: left;
  animation: animate 0.3s linear forwards;
}
@keyframes animate {
  100%{
    transform: scaleX(1);
  }
}
.progress-bar-1 .step:last-child .bullet:before,
.progress-bar-1 .step:last-child .bullet:after{
  display: none;
}
.progress-bar-1 .step p.active{
  color: #d43f8d;
  transition: 0.2s linear;
}
.progress-bar-1 .step .check{
  position: absolute;
  left: 50%;
  top: 70%;
  font-size: 15px;
  transform: translate(-50%, -50%);
  display: none;
}
.progress-bar-1 .step .check.active{
  display: block;
  color: #fff;
}
.form-check-label{
  font-size:16px;
  letter-spacing: 1px;
  color:#fff;
  padding-left: 20px;
}
.form-check{
  margin-bottom: 1rem;
}
/* .last-input-div >input{
  width:200px !important
}
.last-input-div >span{
  width:100px !important
}
.last-input-div-1 >input{
  width:300px !important
} */
