@import url('../assets/global/css/formStyle.css');

.log_main{
    background-color: #007dc57a;
}

.left_bg{
    background: #fff;
    border-radius: 5px 0px 0 5px;
}
.wright_bg{
    background: #fff;
    border-radius: 0px 5px 5px 0px;
}
.login_main {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100vh;
    position: relative;
}
h2.login_heading {
    font-size: 30px;
    margin: 20px 0;
}
.back_img {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 369px;
}
.back_img img {
    margin: 20px auto;
    width: 75%;
}
.login_wright {
    padding: 25px 15px;
}
.login_form_heading h1 {
    font-size: 20px;
    font-weight: 500;
    text-align: center;
    margin: 0px 0px 20px 0;
}

.btn_sec {
    display: flex;
    align-items: center;
    margin-top: 28px;
}
.login_btn_area {
    width: 50%;
    margin-left: 25px;
}
.submit_btn_area {
    width: 50%;
}
.submit_btn_area button {
    display: block;
    width: 100%;
    height: 45px;
    border: none;
    text-align: center;
    background: #F58220;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 4px;
    /*box-shadow: 0 6px #999;*/
    transition: all .1s;
}

.login_btn_area button {
    display: block;
    width: 100%;
    height: 45px;
    border: 1px solid #cecece;
    text-align: center;
     background: #007DC5 ;
    color: #fff;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    border-radius: 5px;
    transition: all .1s;
}
.modal_btn {
    text-align: center;
    margin: 0 0 19px 0;
}

/* Captcha css */
/* Import Google font - Poppins & Noto */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:ital@1&family=Poppins:wght@400;500;600&display=swap');

::selection{
  color: #fff;
  background: #4db2ec;
}
.wrapper{
  width: 100%;
  /* background: #fff; */
  /* padding: 22px 30px 40px; */
  border-radius: 10px;
  /* box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.05); */
}

.wrapper header{
  color: #4db2ec;
  font-size: 33px;
  font-weight: 500;
  text-align: center;
}
.wrapper .captcha-area{
  display: flex;
  height: 65px;
  margin: 10px 0 10px;
  align-items: center;
  justify-content: space-between;
}
.captcha-area .captcha-img{
  height: 75%;
  width: 85%;
  user-select: none;
  background: #000;
  border-radius: 5px;
  position: relative;
}
.captcha-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
  opacity: 0.95;
}
.captcha-img .captcha{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  color: #fff;
  font-size: 30px;
  text-align: center;
  letter-spacing: 6px;
  transform: translate(-50%, -50%);
  text-shadow: 0px 0px 2px #b1b1b1;
  font-family: 'Noto Serif', serif;
}
.wrapper button{
  outline: none;
  border: none;
  color: #fff;
  cursor: pointer;
  background: #4db2ec;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.wrapper button:hover{
  background: #2fa5e9;
}
.captcha-area .reload-btn{
  width: 50px;
  height: 75%;
  font-size: 21px;
}
.captcha-area .reload-btn i{
  transition: transform 0.3s ease;
}
.captcha-area .reload-btn:hover i{
  transform: rotate(15deg);
}
.wrapper .input-area{
  height: 60px;
  width: 100%;
  position: relative;
}
.input-area input{
  width: 100%;
  height: 75%;
  outline: none;
  padding-left: 20px;
  font-size: 20px;
  border-radius: 5px;
  border: 1px solid #bfbfbf;
}
.input-area input:is(:focus, :valid){
  padding-left: 19px;
  border: 2px solid #4db2ec;
}
.input-area input::placeholder{
  color: #bfbfbf;
}
.input-area .check-btn{
  position: absolute;
  right: 6px;
  top: 37%;
  font-size: 15px;
  height: 32px;
  padding: 0 13px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
}
.input-area input:valid + .check-btn{
  opacity: 1;
  pointer-events: auto;
}
.wrapper .status-text{
  display: none;
  font-size: 16px;
  margin: -11px 0 15px;
}

@media (max-width: 506px){
  body{
    padding: 0 10px;
  }
  /* .wrapper{
    padding: 22px 25px 35px;
  } */
  .wrapper header{
    font-size: 25px;
  }
  .wrapper .captcha-area{
    height: 60px;
  }
  .captcha-area .captcha{
    font-size: 26px;
    letter-spacing: 5px;
  }
  .captcha-area .reload-btn{
    width: 60px;
    margin-left: 5px;
    font-size: 20px;
  }
  .wrapper .input-area{
    height: 55px;
  }
  .input-area .check-btn{
    height: 28px;
  }
  .wrapper .status-text{
    font-size: 15px;
  }
  .captcha-area .captcha-img{
    width: 250px;
  }
}



/* Responsive Media query Start here */
@media(max-width:1440px){
    .captcha-area .captcha-img {
        width: 80%;
    }
    .captcha-img .captcha {
        font-size: 35px;
    }
    .login_wright {
        padding: 15px 0 15px 0;
    }
}

@media(max-width:1199px){
    h2.login_heading {
        font-size: 25px;
    }
    .submit_btn_area {
        margin: 10px 0;
    }
    .login_wright {
        padding: 0 0px;
    }
    .back_img img {
        margin: 80px auto;
    }
    .captcha-area .captcha-img {
        width: 241px;
    }
    .captcha-img .captcha {
        font-size: 27px;
        letter-spacing: 8px;
    }
}

@media(max-width:991px){
    h2.login_heading {
        font-size: 23px;
    }
    .back_img img {
        margin: 50px auto;
    }
    .error_message {
        top: 0;
        width: 70%;
    }
    .left_arrow span {
        height: 40px;
        width: 40px;
    }
    .captcha-area .reload-btn {
        width: 40px;
        font-size: 18px;
    }
    .captcha-area .captcha-img {
        width: 230px;
    }
    .captcha-img .captcha {
        font-size: 23px;
        letter-spacing: 8px;
    }
}

@media(max-width:767px){
    .login_main {
        height: 100%;
        margin: 100px 0 100px 0;
    }
    .login_main .row{
        flex-direction: column-reverse;
    }
    .wright_bg {
        border-radius: 5px 5px 0px 0px;
        box-shadow: none;
        padding: 0 27px;
    }
    .left_bg {
        border-radius: 0px 0px 5px 5px;
    }
    .img_wrapper img {
        width: 44%;
    }
    h2.login_heading {
        font-size: 28px;
    }
    .error_message {
        top: -99px;
        width: 70%;
    }
    .login_form_heading h1 {
        margin: 35px 0 35px 0;
    }
   
}

@media(max-width:575px){
    .login_main {
        height: 100%;
        margin: 100px 0 25px 0;
        padding: 25px;
    }
    .left_arrow span {
       display: none;
    }
    .error_message {
        top: -99px;
        width: 90%;
    }
    .btn_sec {
        margin-top: 10px;
    }
}

@media(max-width:320px){
    .forget_pass_lg{
        display: none;
    }
    .forget_pass_md{
        display: block;
    }
    .error_message{
        width: 91%;
    }
    .login_main .row {
        transition: all 0.5s;
    }
    .wright_bg {
        padding: 0 10px;
    }
    .login_main {
        padding: 9px;
    }
    .login_form_heading h1 {
        font-size: 19px;
    }
    .img_wrapper img {
        width: 67%;
    }
    h2.login_heading {
        font-size: 22px;
    }
    p.login_desc {
        padding: 11px 6px;
    }
    .left_arrow span {
        display: none;
     }
     .btn_sec {
        margin-top: 10px;
    }
    .back_img {
        height: 300px;
    }
}

/* Responsive Media query End here */