
/* code css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&display=swap');




* {
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
  }
  
  body {
    /* background-color: #f1f1f1; */
    overflow-x: hidden;
  }
  
nav {
  background: white!important;
}

  #regForm {
    background-color: #ffffff;
    margin: 50px auto 110px;
    /* font-family: Raleway; */
    padding: 40px;
    /* width: 70%; */
    min-width: 300px;
    border-top: 5px solid #00b779;
  }
  
  input {
    padding: 10px;
    width: 100%;
    font-size: 17px;
    /* font-family: Raleway; */
    border: 1px solid #aaaaaa;
  }
  
  /* Mark input boxes that gets an error on validation: */
  input.invalid {
    background-color: #ffdddd;
  }
  
  /* Hide all steps by default: */
  .tab {
    display: none;
  }
  
  button {
    background-color: #04AA6D;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 17px;
    /* font-family: Raleway; */
    cursor: pointer;
  }
  
  button:hover {
    opacity: 0.8;
  }
  
  #prevBtn {
    background-color: #bbbbbb;
  }
  
  /* 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;
  }
  
  .step.active {
    opacity: 1;
  }
  
  /* Mark the steps that are finished and valid: */
  .step.finish {
    background-color: #04AA6D;
  }

  /* code css end */

  .formstep {
    display: flex;
    justify-content: center;
  } 
  /* .formstep a {
    overflow: hidden;
    width: 100px;
    height: 100px;
    margin: 10px;
    border-radius: 50%;
    border: 1px solid transparent;
  } */
  .formstep a img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  .multi-form-wrapper {
    margin-top: 90px;
    background: #3763f4;
  }

  .multi-form-wrapper .tab:first-child img + p {
    font-size: 14px!important;
  }
  
  
  
  #main-form-wrapper {
    position: relative;
    width: 70%;
    margin: auto;
  }

  #form-img img {
    width: 50px;
    transform: scaleX(-1);
  }
  #form-img{
    position: absolute;
    top:-53px;
    left: 0;
    width: 50px;
    height: 50px;
  }

  #form-bank-img {
    position: absolute;
    top:-36px;
    width: 50px;
    height: 50px;
    right: 0!important;
  }
  #form-bank-img img {
    width: 50px;

  }

  .multi-form-wrapper h1 {
    color: white;
  }

  div#mulit_stepform4 label {
    vertical-align: sub;
  }

  .multi-form-wrapper input[type=checkbox]{
    width: unset!important;

  }

  @media(max-width: 480px) {
    #main-form-wrapper {
      width: 100%!important;  
    }
    #main-form-wrapper div div {
      flex-wrap: wrap;
      flex-direction: column;
      align-self: center;
    }
    #main-form-wrapper div div {

    }
    #form-navigate-wrapper {
      margin-top: 35px;
    }
  }

  @media(min-width: 480px) {
    .multi-form-wrapper .tab:first-child > div > div {
      min-width: 179px!important;
      margin: 25px;
    }
  }