@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
body{
    font-family: "Inter", sans-serif;
    background-color: #EEF6F1;
}
@font-face {
    font-family: Jameel Noori Nastaleeq;
    src: url(fonts/Jameel-Noori);
  }
  .font-jameel {
    font-family: Jameel Noori Nastaleeq;
}
::placeholder,.form-select {
color: #D1D3D4;
}
.captcha-title {
    background-color: #eaeaea;
    border-radius: 10px;
    padding: 0 4px;
}
label {
    color: #1A1D1F;
    font-weight: 500;
    display: flex;
    font-size: 14px;
    justify-content: space-between;
}
.rounded-7{
    border-radius: 7px;
}
.rounded-20{
    border-radius: 20px;
}
.font-12{
    font-size: 12px;
}
.fw-600{
    font-weight: 600;
}
.form-control{
    border-radius: 7px;
    box-shadow: inset 0px 0px 4px #33333329;    
    height: 50px;
}
.form-control:focus {
    box-shadow: none;
    border-color: #33333329;
}
.outline-none{
    outline: none;
}
.btn-green{
    background-color: #009745;
}
.banner-area .header-logo{
    display: flex;
    align-items: center;
    color: #fff;    
}
.banner-area .site-logo{
    width: 60px;
}
.banner-area .logo-text{
    border: 2px solid #87DF4B;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    overflow: hidden;
    margin-left: 10px;
}
.banner-area .logo-text .text-bg{
    background-color: #87DF4B;
    padding: 4px 15px;
}
.banner-area{
    background: linear-gradient(80deg, #05A14C, #023B1CB2) fixed, url(../images/banner-img.png);
    height: 30vh;
    background-size: cover ;
    background-repeat: no-repeat; 
}
.banner-area .cm-img{
    position: absolute;
    bottom: 0px;
    right: 10%;
    /* right: 160px; */
}
.banner-area .cm-img img{
    height: 170px;
}
.form-card{
    /* min-height: 85vh; */
    height: 90vh;
    /* overflow: auto; */
}
.form-content{
    background: url(../images/bg-cover.png) no-repeat, linear-gradient(10deg, #0F8842, #2EA35B);
    background-size: cover;    
    height: 100%;
    width: 100%; 
}
.auth-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-width: 100%;
    min-height: 100vh;
    background: #1abc9c;
    background-image: url(../images/img-auth-big.jpg);
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}
.mini-container{
    width: 100%;
    max-width: 60%;
    margin: auto;
}
.reg-btn{
    background-color: #009745;
    color: #fff;
    border-radius: 7px;    
    /* width: 175px; */
}
.reg-btn:hover,.reg-btn:focus{
    background-color: #277e4c;
    color: #fff;
    transition: 0.5s ease;
    box-shadow: none;
}
.main-content .bottom-card{
    position: absolute;
    bottom: 0px;
    right: 60px;
}
.bottom-card img{
    height: 200px;
}
.form-check-input:checked {
    background-color: #03BE63 !important;
    border-color: #03BE63 !important;
}
.form-card .card-body{
    height: 49vh;
    overflow: auto;
}
.form-check label{
    color: #6F767E;
    font-size: 12px;
    padding-top: 3px;
}
.card-body::-webkit-scrollbar {
    width: 5px;
  }
  
  /* Track */
  .card-body::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey; 
    border-radius: 10px;
  }
   
  /* Handle */
  .card-body::-webkit-scrollbar-thumb {
    background: #009745; 
    border-radius: 10px;
  }
  
  /* Handle on hover */
  .card-body::-webkit-scrollbar-thumb:hover {
    background: #277e4c; 
  }

  /*upload-btn*/
  .upload-btn-wrapper input[type="file"] {
    font-size: 19px;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
    height: 22px;
}

.upload-btn-wrapper{
    top: -1px;
}

.btn-upload {
    background-color: #D9D9D9;
    color: #000;    
    height: 22px;
    line-height: 0.7;
    white-space: nowrap;
    padding: 5px 10px;
    display: inline-block;
    width: auto;
    margin-right: 10px;
}
@media only screen and (max-width: 540px) {   
    .banner-area .logo-text{
        font-size: 8px;
    }    
  }
@media only screen and (max-width: 767px) {
    .cm-img{
        display: none;
    }  
  }

@media only screen and (max-width: 1210px) {
    .banner-area h4 span{
        display: block;
    }
    .bottom-card {
      display: none;
    }
    .form-heading{
        font-size: 1.2rem;
    }
  }

