
  @import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap");

  /* Style the tab */
  .tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
  }

  /* Style the buttons inside the tab */
  .tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 8px 16px;
    transition: 0.3s;
    font-size: 17px;
    width: 50%;
  }

  .removeElement{
    background-color: rgb(206, 188, 53); 
  border: none;
  color: rgb(255, 255, 255);
  /* padding: 8px; */
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  border-radius: 3px;
    transition: 0.5s ease;
    background:var(--back-btn-hover);
    /* width: 40px; */
  }
  .removeElement:hover{

    background: var(--back-btn-hover);
  }

  #createElement{
    background-color:#76a0df;
    border: 0;
    color: white;
    /* padding: 2px 6px; */
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 3px;
    transition: 0.1s ease;
    /* padding: 9px 12px 9px 12px; */

  }

  #gstin, #user_name,#password{

    /* padding: 9px; */
    border: 2px solid var(--secondary);
    /* width: 243px; */
    border-radius: 3px;
    margin-right: 10px;
}

  

#createElement:hover
{
background: var(--next-btn-hover);

}

  /* Change background color of buttons on hover */
  .tab button:hover {
    background-color: #6b59d35c;
  }

  /* Create an active/current tablink class */
  .tab button.active {
    background-color: #ccc;
  }

  /* Style the tab content */
  .tabcontent {
    margin-top: 20px;
    margin-bottom: 20px;
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
  }

  :root {
    --primary: #c8dede;
    --secondary: #bfc0c0;
    --white: #fff;
    --text-clr: #000000;
    --header-clr: #ff0000;
    --next-btn-hover: #45d24e;
    --back-btn-hover: #c02626;
    --progressbar: #45c44d;
    --nextbutton: #76a0df;
    --govtportalbtn:#dee855;
  }
/* 
  * {
    margin: 0;
    padding: -1px;
    box-sizing: border-box;
    list-style: none;
    outline: none;
    font-family: "Open Sans", sans-serif;
  }

  body {
    background: var(--primary);
    color: var(--text-clr);
    font-size: 16px;
    position: relative;
  } */
  .form_container {
    /* margin-bottom: 20px; */
    margin-top: -15;
  }
  .secform_container{
    margin-bottom: 20px;
    margin-top: -48px;
  }
  .wrapper {
    width: 900px;
    max-width: 100%;
    background: var(--white);
    margin: 50px auto 0;
    padding: 43px;
    border-radius: 5px;
  }

  .wrapper .header {
    margin-bottom: 35px;
    display: flex;
    justify-content: center;
  }

  .wrapper .header ul {
    display: flex;
  }

  .wrapper .header ul li {
    margin-right: 50px;
    position: relative;
  }

  .wrapper .header ul li:last-child {
    margin-right: 0;
  }

  .wrapper .header ul li:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 55px;
    width: 100%;
    height: 2px;
    background: var(--secondary);
  }

  .wrapper .header ul li:last-child:before {
    display: none;
  }

  .wrapper .header ul li div {
    padding: 5px;
    border-radius: 50%;
  }

  .wrapper .header ul li p {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    color: var(--white);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
  }

  .wrapper .header ul li.active:before {
    background: #93d359;
  }

  .wrapper .header ul li.active p {
    background: var(--progressbar);
  }

  .wrapper .form_wrap {
    /* margin-bottom: 35px; */
  }

  .wrapper .form_wrap h2 {
    color: var(--header-clr);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
  }

  .wrapper .form_wrap .input_wrap {
    width: 350px;
    max-width: 100%;
    margin: 0 auto 5px;
  }

  .wrapper .form_wrap .input_wrap:last-child {
    margin-bottom: 0;
  }

  .wrapper .form_wrap .input_wrap label {
    display: block;
    margin-bottom: 5px;
  }

  .wrapper .form_wrap .input_wrap .input {
    border: 2px solid var(--secondary);
    border-radius: 3px;
    /* padding: 7px; */
    display: block;
    width: 100%;
    font-size: 16px;
    transition: 0.5s ease;
    /* margin-bottom: 20px; */
  }

  .wrapper .form_wrap .input_wrap .input:focus {
    border-color: var(--primary);
  }

  .wrapper .btns_wrap {
    width: 350px;
    max-width: 100%;
    margin: 0 auto;
  }


  .wrapper .btns_wrap .common_btns.form_1_btns {
    justify-content: flex-end;
    float: right;
  }

  .wrapper .btns_wrap .common_btns button {
    border: 0;
    /* padding: 23px 15px; */
    background: var(--nextbutton);
    color: var(--white);
    width: 155px;
    justify-content: center;
    display: flex;
    flex: none;
    align-items: center;
    font-size: 14px;
    border-radius: 3px;
    transition: 0.5s ease;
    cursor: pointer;
}
 

  .wrapper .btns_wrap .common_btns button.btn_back {
    background: var(--secondary);
  }

  .wrapper .btns_wrap .common_btns button.btn_next .icon {
    display: flex;
    margin-left: 10px;
  }

  .wrapper .btns_wrap .common_btns button.btn_back .icon {
    display: flex;
    margin-right: 10px;
  }


  .wrapper .btns_wrap .common_btns button.btn_next:hover,
  .wrapper .btns_wrap .common_btns button.btn_done:hover,
  .wrapper .btns_wrap .common_btns button.btn_onboarding:hover
  {
    background: var(--next-btn-hover);
  }
.govtlink{
  text-decoration: none;
}
  .wrapper .btns_wrap .common_btns button.btn_govtportal:hover
  {
    background: var(--govtportalbtn);
  }

  .wrapper .btns_wrap .common_btns button.btn_back:hover {
    background: var(--back-btn-hover);
  }

  .modal_wrapper,  .modal_wrapper2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
  }

  .modal_wrapper .shadow, .modal_wrapper2 .shadow2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: 0.2s ease;
  }

  .modal_wrapper .success_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -800px);
    background: var(--white);
    padding: 50px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: 0.5s ease;
    width: 450px
  }

  .modal_wrapper2 .success_wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -800px);
    background: var(--white);
    padding: 50px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    transition: 0.5s ease;
  }
  .modal_wrapper .success_wrap .modal_icon, .modal_wrapper2 .success_wrap .modal_icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background: var(--progressbar);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
  }

  .modal_wrapper.active, .modal_wrapper2.active {
    visibility: visible;
  }

  .modal_wrapper.active .shadow, .modal_wrapper2.active .shadow2 {
    opacity: 1;
  }


  .modal_wrapper.active .success_wrap, .modal_wrapper2.active .success_wrap {
    transform: translate(-50%, -50%);
  }
  .otpdiv {
    padding: 6px 16px;
    border: 1px solid #ccc;
    width: 100% !important;
  }
  .otplabel {
    margin-top: 10px;
    float: left;
    margin-right: 15px;
  }
  .otpinput {
    border: 2px solid var(--secondary);
    border-radius: 3px;
    padding: 10px;
    display: block;
    width: 79%;
    font-size: 16px;
    transition: 0.5s ease;
    margin-bottom: 20px;
  }
  .instructions {
    font-weight: bold;
    font-family: auto;
  }
  .btn_form2 {
    margin: 7px;
    /* height: 70px; */
    width: 110px;
  }
  hr.solid {
  border-top: 1px solid #bbb;
}
.gstinsrow{
  margin-top: 15px;
}
.otpsubmit{
  display: flex;
    justify-content: center;
    align-items: center;
}
.otpsubmitbtn {
  /* padding: 11px 15px; */
    background: var(--nextbutton);
    border: aliceblue;
    width: 100px;
    border-radius: 3px;
    margin-top: 5px;
}
.otpsubmitbtn:hover{
  
  background: var(--next-btn-hover);

}
.btndisabled{
  pointer-events: none;
    background-color: var(--primary) !important;
}


.main {
            display: block;
            position: relative;
            padding-left: 45px;
            margin-bottom: 15px;
            cursor: pointer;
        }

        input[type=checkbox] {
            visibility: hidden;
        }

        .geekmark {
            position: absolute;
            top: 0;
            left: 0;
            height: 25px;
            width: 25px;
            background-color: var(--primary);
        }
          
        /* Specify the background color to be
        shown when hovering over checkbox */
        .main:hover input ~ .geekmark {
            background-color: var(--next-btn-hover);
        }
          
        /* Specify the background color to be
        shown when checkbox is active */
  
          
        /* Specify the background color to be
        shown when checkbox is checked */
        .main input:checked ~ .geekmark {
            background-color: green;
        }
          
        /* Checkmark to be shown in checkbox */
        /* It is not be shown when not checked */
        .geekmark:after {
            content: "";
            position: absolute;
            display: none;
        }
          
        /* Display checkmark when checked */
        .main input:checked ~ .geekmark:after {
            display: block;
        }
          
        /* Styling the checkmark using webkit */
        /* Rotated the rectangle by 45 degree and 
        showing only two border to make it look
        like a tickmark */
        .main .geekmark:after {
            left: 8px;
            bottom: 5px;
            width: 6px;
            height: 12px;
            border: solid white;
            border-width: 0 4px 4px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }
.gstdivwrap {
    width: 100% !important;
}
.thirdwrap{
    width: 100% !important;
    /* margin-top: -71px !important; */
}
 
.center {
    display: flex;
    justify-content: center;
    align-items: center;
    /* height: 145px; */
  }
  .center .btn_onboarding {
    width: 200px !important;
    flex: none !important;
    margin-top: -100px;
  }