/* login */
.login{
    width: 100%;
    height: 100dvh;
    background-color: var(--light-black-clr);
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-bg-secondary);
    position: relative;
 }


 .login .login-box{
    width: 100%;
    height: 100%;
    /* padding: 2rem; */
    background-color: var(--color-white);
    /* border-radius: var(--border-radius); */
    display: flex;
    justify-content:center;
    align-items: center;
    box-shadow: var(--box-shadow-primary);
    position: relative;
    z-index: 2;
 }
 .login .login-box .left-content{
    width: 45%;
    height: 100%;
    padding:0 3rem;
    color: var(--color-white);
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: relative;
 }
 .login .login-box .left-content::before{
    content: '';
    position: absolute;
    background: url(login_page_back.jpg);
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: -1;
 }
 .login .login-box .web-logo img{
   width: 60px;
   border-radius: 50%;
 }

 .login .login-box .left-content h3{
   font-weight: 600;
   font-size: var(--font-size-md);
   margin-top: 0.25rem;
   margin-bottom: 0.5rem;
   color: var(--color-white);
 }
 .login .login-box .left-content h2{
    /* text-align: center; */
   font-size: var(--font-size-sm);
   line-height: 1.6;
   font-weight: 200;
   min-height: 80px;
   color: var(--color-white);
 }
 .login .login-box .right-content{
    width: 55%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 3rem;
 }
 .login .login-box .right-content h2{
    font-size: var(--font-size-xl);
    margin-bottom: 0.5rem;
 }
 .login .login-box .right-content .doesnt-div{
    margin-bottom: 1.5rem;
    font-size: var(--font-size-sm);
    color: #3d3d3d;
 }
 .login .login-box .right-content .doesnt-div a{
    font-weight: 500;
 }

 .login .login-box .right-content .permisson-div{
    display: flex;
    justify-content: center;
    align-items:flex-start;
    width: 20rem;
    margin-top: 2rem;
 }

 .login .login-box .right-content .permisson-div input{
    margin-right: 5px;
    margin-top: 6px;
 }
 .login .login-box .right-content p{
    width: 100%;
    font-size: var(--font-size-sm);
    font-weight: 300;
    text-align: center;
 }
 .login .login-box .right-content a{
    text-decoration: none;

 }



 .login .login-box .select-btn{
    background-color: var(--color-white);
    color: var(--color-primary);
    font-weight: 600;
 }



/*---------------------------------------------*/
button {
	outline: none !important;
	border: none;
	background: transparent;
}

button:hover {
	cursor: pointer;
}

iframe {
	border: none !important;
}


/*==================================================================
[ Size ]*/
.size1 {
  width: 355px;
  max-width: 100%;
}

.size2 {
  width: calc(100% - 43px);
}

/*==================================================================
[ Background ]*/
.bg1 {background: #3b5998;}
.bg2 {background: #1da1f2;}
.bg3 {background: #cd201f;}


/*//////////////////////////////////////////////////////////////////
[ login ]*/
.limiter {
  width: 100%;
  margin: 0 auto;
}

.container-login100 {
  width: 100%;  
  min-height: 100dvh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: #f2f2f2;
}


.wrap-login100 {
  width: 100%;
  background: #fff;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  flex-direction: row-reverse;

}

/*==================================================================
[ login more ]*/
.login100-more {
  width: calc(100% - 560px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.login100-more::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0,0,0,0.1);
}



/*==================================================================
[ Form ]*/

.login100-form {
  /* width: 560px;
  min-height: 100dvh;
  display: block;
  background-color: #f7f7f7;
  padding: 173px 55px 55px 55px; */
  width: 100%;
  max-width: 24rem;
}

.login100-form-title {
  width: 100%;
  display: block;
  font-family: Poppins-Regular;
  font-size: 30px;
  color: #333333;
  line-height: 1.2;
  text-align: center;
}




@media only screen and (max-width: 1025px) and (orientation: portrait){
    .login .login-box{
        flex-direction: column;
    }
    .login .login-box.col-reverse{
        flex-direction: column-reverse;
    }
    .login .login-box .left-content{
        width: 100%;
        justify-content: center;
        align-items: center;
        max-height: 40vh;
    }
    .login .login-box .right-content{
        width: 100%;
    }
    .login100-form,
    .container-login100-form-btn{
        max-width: 500px;
        margin-top: 1.35rem;
    }
    .checkbox-div-parent{
        margin-top: 1.35rem;
    }
    .login .login-box .left-content h2{
        text-align: center;
    }
}
@media only screen and (max-width: 991px){
    .login .login-box .left-content{
        max-height: 29vh;
    }
}

@media only screen and (max-width: 768px){

}

@media only screen and (max-width: 480px){
    .login .login-box .web-logo img{
        width: 40px;
        display: none;
    }
    .login .login-box .left-content{
        max-height: 24dvh;
        display: flex;
        justify-content: center;
        align-items: center;
        display: none;
    }
    .login .login-box .left-content h2{
        min-height: auto;
    }
    .login .login-box .right-content{
        padding: 1rem 2rem;
    }
}

@media only screen and (max-width: 390px){

}

