@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;600&display=swap');
:root{
    --black:#000;
    --white:#fff;
    --purple: #4a1083;
    --txtColor: #111111;
    --gray:#333;
}
body{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    color: var(--txtColor);
}
a{
  text-decoration: none;
}
input#phonedisabled {
  color: lightgrey;
}
/* header */
header {
    background-color: #f8f6fe !important;
    height: 80px;
    padding: 2px 48px;
    box-shadow: 0 1px 6px 0 rgb(32 33 36 / 28%);
}
.logo {
    height: 100%;
    width: 20%;
}
.page-link {
    z-index: 0 !important;
}
header div.logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
}
/* buttons */
.btn {
    display: block;
    font-size: 26px;
    font-family: 'Poppins', sans-serif;
    padding: 10px 36px;
    border: none;
    cursor: pointer;
    margin: 15px 0;
}
.purple{
    background: transparent;
    color: #41006B;
    border-radius: 8px;
    border: 2px solid #41006B;
    margin: 50px 0 !important;
    padding: 26px 30px !important;
    font-size: 24px !important;
}
.purple:hover{
    background: #41006B;
    color: var(--white);
    border: 2px solid #41006B; 
}
.border-btn {
    padding: 15px 50px;
    border-radius: 8px;
    background: transparent;
    border: 1px solid var(--purple) !important;
    color: var(--purple);
}
.border-btn:hover{
    background: var(--purple);
    color: var(--white);
}
/* Mains */
.buttonbox {
    height: calc(100vh - 84px);
}
.button-box-main .purple {
    width: 410px;
}
/* legal box */
.legalbox h2 {
    font-size: 36px;
}
.legalbox > p {
    font-size: 17px;
    /*margin-top: 12px;*/
    color: blue;
}
.btn-box {
    width: 320px;
    margin: 40px auto;
}
/* idverification */
.validatemain{
    text-align: center;
  }
  .validatemain input {
    width: 300px;
    border-radius: 2px;
  }
  .validatemain button {
    height: 38px;
    padding: 6px 12px;
    margin-left: 10px;
    background-color: var(--purple);
    border: 1px solid var(--purple);
    border-radius: 2px;
    color: var(--white);
    cursor:pointer;
    font-size:18px;
  }
  .validatemain ::-webkit-input-placeholder {
    color: #bbb;
  }
  .validatemain ::-moz-placeholder {
    color: #bbb;
    opacity: 1;
  }
  .validatemain :-ms-input-placeholder {
    color: #bbb;
  }
  
  #result{
    padding-top: 20px;
    text-align: center;
  }
  /* details page */
  .formbox {
    width: 100%;
    margin: 50px auto;
}
.formbox .col {
    margin: 7px 0;
}
#step2_form input {
  border-radius: 5px;
}
#step2_form .intl-tel-input.allow-dropdown {
  width: 100%;
}
.formbox .purple {
    padding: 10px 38px;
    border-radius: 11px;
}
/* Recieve page */
.receive {
    width: 75%;
}
/* sublist */
ul.sub-list {
    list-style: none;
    font-size: 18px;
    display: flex;
    flex-wrap: wrap;
}
ul.sub-list li {
    width: 33.3%;
    margin: 10px 0;
}
ul.sub-list li input{
    margin-right: 10px;
}
.bio textarea{
    margin: 0 auto;
    display: block;
    padding: 7px 10px;
    width: 98%;
    font-size: 24px;
    height: 200px;
}
.bio h3{
    margin-bottom: 22px;
        font-size: 30px;
}
.bio .purple {
    margin: 20px auto;
    padding: 11px 44px;
    border-radius: 10px;
}
/* terms */
.termtxt {
    margin: 24px 0;
}
input[type="submit"] {
    padding: 10px 26px;
    border-radius: 12px;
}   
/* Organization */
.detailsform .row {
    margin: 16px 0;
}
/* Otp */
.otp{
    display: none;
}
.verification-code {
    max-width: 300px;
    position: relative;
    margin:50px auto;
    text-align:center;
}
.control-label{
  display:block;
  margin:20px auto;
  font-weight:900;
}
.verification-code--inputs input[type=number] {
    border: 2px solid #e1e1e1;
    width: 46px;
    height: 46px;
    padding: 10px;
    text-align: center;
    display: inline-block;
  box-sizing:border-box;
}
#g-recaptcha-response {
  display: block !important;
  position: absolute;
  margin: -78px 0 0 0 !important;
  width: 302px !important;
  height: 76px !important;
  z-index: -999999;
  opacity: 0;
}
/* upload image */
.uploader {
    display: block;
    clear: both;
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }
  .uploader label {
    clear: both;
    width: 100%;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #fff;
    border-radius: 7px;
    /*border: 3px solid #eee;*/
    transition: all 0.2s ease;
    user-select: none;
  }
  .uploader label:hover {
    border-color: var(--purple);
  }
  .uploader label.hover {
    border: 3px solid var(--purple);
    box-shadow: inset 0 0 0 6px #eee;
  }
  .uploader #response #messages {
    margin-bottom: 0.5rem;
  }
  .uploader #file-image {
    display: inline;
    margin: 0 auto 0.5rem auto;
    width: auto;
    height: auto;
    max-width: 180px;
  }
  .uploader #file-image.hidden {
    display: none;
  }
  .uploader #notimage {
    display: block;
    float: left;
    clear: both;
    width: 100%;
  }
  .uploader #notimage.hidden {
    display: none;
  }
  .uploader input[type="file"] {
    display: none;
  }
  .uploader div {
    margin: 0 0 0.5rem 0;
    color: #5f6982;
  }
  .uploader .btn {
    display: inline-block;
    margin: 0.5rem 0.5rem 1rem 0.5rem;
    clear: both;
    font-family: inherit;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: initial;
    border: none;
    border-radius: 0.2rem;
    outline: none;
    padding: 0 1rem;
    height: 36px;
    line-height: 36px;
    color: #fff;
    transition: all 0.2s ease-in-out;
    box-sizing: border-box;
    background: var(--purple);
    border-color: var(--purple);
    cursor: pointer;
  }
  /* Option css */
  .option-box input {
    margin-top: 5px;
    margin-right: 12px;
}
.option-box .row {
    margin: 16px 0;
}
/* Steps css */
.step{
    display: none
}
.nextbtn{
    display: none;
}

.badge {
    position: absolute;
    top: 25px;
    margin-left: 170px;
    padding: 3px 13px;
    border-radius: 50%;
    background-color: red;
    color: white;
}

/* Responsive */
@media(max-width:375px){
    #schedule {
         padding: 0 !important; 
    }
}

/* Responsive */
@media(max-width:992px){
    .receive {
        width: 96%;
    }
    #schedule {
         padding: 0 !important; 
    }
}
@media(max-width:767px){
    .studenttutorbtn .border-btn {
        padding: 10px 22px;
    }
    .receive {
        width: 100%;
    }
}
@media(max-width:567px){
    .formbox{
        width:100%;
    }
    #step2_form input {
        border-radius: 6px;
    }
    .mtb {
        margin: 22px auto !important;
    }
    .legalbox h2 {
        font-size: 30px;
    }
    button#next {
        margin-top: 0px !important;
    }
    .studenttutorbtn .btn-box {
        flex-direction: column;
    }
    .validatemain button{
        margin-top: 10px;
    }
    div#fisrtshoworg .btn-box {
     width: 100%;
    }
    ul.sub-list li {
        width: 100%;
    }
    .bio textarea{
        width:100%;
    }
}

.msgnbtn {
            display: flex;
            justify-content: space-between;
        }
        .phoneotpdiv p,.resendbtn {
            font-size: 12px;
            margin-top: 4px;
        }
        
        
@media(max-width:567px){
    .button-box-main .purple{
            width: 290px;
    }
}
.hide {
    display: none !important;
}
.ml {
    margin-left: 10px !important;
}