/*hide default logo of wp in login page */
.login h1 a{
 background-image:none;
}
/*end*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: #ffffff;
    font-family: "Urbanist", sans-serif;
  }
  .d-none{
   display: none;
  }
  #login .form-field-row.d-none{
   display: none;
  }
  #login .form-field-row.social-login{
   margin-top: 20px;
  }
  .social-login img.social-icon{
   width: 64px;
   height: 64px;
  }

  .onboarding-layout {
    padding: 15px;
    height: 100%;
}
  /* Layout */
  .login-wrapper {
    display: flex;
    min-height: calc(100vh - 30px);
  }
  
  /* Left Panel */
  .login-left {
    flex: 1;
    background-image: url("../images/onboarding.png");
    background-size: cover;
    background-position: top;
    border-radius: 20px;
    position: relative;
    color: #fff;
    overflow: hidden;
  }
  .lf-logo a:focus{
   box-shadow: none;
  }
  
  .overlay-content {
    position: absolute;
    bottom: 50px;
    width: 100%;
    text-align: center;
    padding: 0px 31px;
  }
  .lf-logo {padding: 34px 39px;}
  
  .overlay-content h2 {
    font-size: 38px;
    line-height: 110.526%;
    font-weight: 700;
    letter-spacing: -0.38px;
    color: #FFF;
    text-align: center;
  }
  .registration-wrapper .overlay-content h2{
   font-size: 36px;
   letter-spacing: -0.72px;
  }
  
  /* Right Panel */
  .login-right,#login 
  {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #login{
   flex-direction: column;
   padding: 0px;
  }
  .wp-login-logo,.login-heading{
   display: none;
  }
  
  .login-box {
    width: 100%;
    max-width: 420px;
    padding: 20px 15px;
  }
  
  .login-box h1,#login h2 {
    font-size: 38px;
    margin-bottom: 7px;
    line-height: 110%;
    letter-spacing: -0.38px;
    font-weight: 700;
  }
  .user-pass-wrap.form-group {
   margin-bottom: 4px;
  }
  .login-box .sign-in-heading,
  .signup-heading
  {
   color: #232323;
  }
  
  .subtitle {
    color: #969696;
    margin-bottom: 30px;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: -0.36px;
  }
  
  .form-group {
    position: relative;
    margin-bottom: 20px;
  }
  .login form{
   border: 0;
   box-shadow: none;
   padding: 0px;
   overflow: inherit;
  }
  
  /* Input */
  .form-group .group-input,
  .login input[type=text],
  .login input[type=password]
  {
    width: 100%;
    padding: 16px;
    background: transparent;
    border: 1px solid #D9D9D9;
    border-radius: 12px;
    color: #232323;
    font-size: 16px;
    outline: none;
    line-height: 150%;
    font-weight: 500;
    font-family: "Urbanist", sans-serif;
  }
  .form-group input::placeholder{
    color: #9A9A9A;
  }
  /* Focus border */
  .form-group input:focus {
    border-color: #00a8ff;
  }

  .login-box input[type=password]:focus, 
  .login-box input[type=text]:focus{
   box-shadow: none;
  }
  
  /* Label */
  .form-group label {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    font-size: 15px;
    pointer-events: none;
    transition: 0.3s ease;
    padding: 0 6px;
    opacity: 0;
  }
  
  /* FLOAT CONDITION */
    .form-group input:focus + label{
      opacity: 1;
      top: 0px;
      font-size: 14px;
      color: #08A1EE;
      background: #FFF;
      font-weight: 600;
      line-height: 150%;
    }
    .form-group input:not(:placeholder-shown) + label {
        opacity: 1;
        top: 0px;
        font-size: 14px;
        color: #9A9A9A;
        background: #FFF;
        font-weight: 600;
        line-height: 150%;
    }

    /* Focus border */
    .form-group input:not(:placeholder-shown){
        border-color: #D9D9D9;
    }
    .form-group input:focus {
        border-color: #08A1EE;
    }

  
  .toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    display: flex;
  }
  
  .password-field {
    position: relative;
  }
  
  .password-field .eye {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }
  
.forgot {
    display: block;
    text-decoration: none;
    margin-bottom: 21px;
    text-align: right;
}
.forgot-link{
    color: #232323;
    font-family: "Urbanist", sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    text-decoration-line: underline;
}
  #login .form-field-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

#login .form-field-row .forgot {
    margin: 0px;
}
.forgetmenot-wrapper label {
    font-family: "Urbanist", sans-serif;
    color: #232323;
}


.wp-core-ui .button.submit-button,
.wp-core-ui .button.button-primary 
{
    width: 100%;
    padding: 16px 14px;
    border: none;
    border-radius: 40px;
    background: #08A1EE;
    color: #fff;
    cursor: pointer;
    height: 56px;
    font-size: 20px;
    line-height: 120%;
    letter-spacing: -0.2px;
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
}
.signup {
    color: #232323;
    margin-top: 32px;
    text-align: center;
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    display: none;
}
.signup.show,.registration-wrapper .signup{
 display: block;
}

.login .privacy-policy-page-link{
 display: none;
}



.login #nav {
margin: 24px 0 0;
font-size: 18px;
font-weight: 500;
line-height: 150%;
gap: 4px;
display: inline-flex;
justify-content: center;
align-items: center;
width: 100%;
}

.formSubmit .submit-button{
 width: 100%;
 padding: 16px 14px;
 border: none;
 border-radius: 40px;
 background: #00a8ff;
 color: #fff;
 cursor: pointer;
 height: 56px;
 font-size: 20px;
 line-height: 120%;
 letter-spacing: -0.2px;
 font-family: "Urbanist", sans-serif;
 font-weight: 700;
}

#backtoblog
{
width: 100%;
text-align: center;
}
.login #backtoblog{
position: absolute;
top: 0px;
left: 0;
display:none;
}
.login #nav.signup a,
.registration-wrapper .signup a{
color: #08A1EE;
text-decoration: none;
font-weight: 500;
line-height: 150%;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
box-shadow: none;
font-feature-settings: 'liga' off, 'clig' off;
}
.registration-wrapper .signup a
{
  font-size: 16px;
  font-weight: 700;
}
.float-profile-wrap {
 position: relative;
 height: calc(100vh - 180px);
 max-width: 980px;
 margin: auto;
}
.float-profile {
position: absolute;
animation: float 4s ease-in-out infinite;
}
.float-profile.profile-1 {
 /* bottom: 240px; */
 bottom: 41%;
 left: 10%;
 /* left: 60px; */
 animation-duration: 5s;
}
.float-profile.profile-2 {
right: 60px;
/* bottom: 190px; */
bottom: 34%;
animation-duration: 7s;
}
.float-profile.profile-3 {
/* transform: translate(240px, 90px); */
transform: translateY(100px);
left: 30%;
animation-duration: 8s;
}
.float-profile.profile-4 {
 /* transform: translate(390px, -15px); */
 left: 55%;
 top: -20px;
 animation-duration: 9s;
}
.float-profile.profile-5 {
 /* right: 90px;
 top: 90px; */
 right: 13%;
 top: 17%;
 animation-duration: 10s;
}
.float-profile > img {
 width: 70px;
 height: 70px;
 border-radius: 100%;
}
.float-profile-tag{
border-radius: 68px;
background: rgba(255, 255, 255, 0.10);
position: absolute;
border: 1px solid #51bff8;
backdrop-filter: blur(3px);
}
.profile-1 .float-profile-tag{
width: 60px;
height: 60px;
display: inline-flex;
padding: 12px;
left: 90px;
margin-top: 20px;
}
.profile-2 .float-profile-tag {
width: 40px;
height: 40px;
display: inline-flex;
align-items: center;
justify-content: center;
bottom: -10px;
right: -6px;
}
.profile-3 .float-profile-tag {
padding: 6px;
width: 26px;
height: 27px;
display: inline-flex;
align-items: center;
justify-content: center;
left: -20px;
top: 10px;
}
.profile-4 .float-profile-tag {
width: 43px;
height: 43px;
display: inline-flex;
align-items: center;
justify-content: center;
bottom: -15px;
left: 40px;
}
.profile-5 .float-profile-tag {
padding: 6px;
width: 26px;
height: 27px;
display: inline-flex;
align-items: center;
justify-content: center;
right: -8px;
top: -5px;
}
.eye-close { display: none; }

.toggle-password.active .eye-open { display: none; }
.toggle-password.active .eye-close { display: block; }

.form-group select.custom-select{
-webkit-appearance: none;
background-image: url("../images/select-arrow.png") !important;
background-size: 12px !important;
background-repeat: no-repeat !important;
background-position: 96% 50% !important;
}

.forgetmenot{ display: none !important; }
.login .button.wp-hide-pw{
     top: 9px;outline: none !important;    right: 5px;
}
.login .button.wp-hide-pw:focus{
border-color: transparent;
    box-shadow: none;
    background: transparent;
}

.login-right .form-group .selection .select2-selection.select2-selection--single {
 width: 100%;
 padding: 16px;
 background: transparent;
 border: 1px solid #D9D9D9;
 border-radius: 12px;
 color: #232323;
 font-size: 16px;
 outline: none;
 line-height: 150%;
 font-weight: 400;
 height: 58px;
}

.login-right .form-group .selection .select2-selection.select2-selection--single span#select2-profile-e8-container {
 padding-left: 0px;
}

.login-right .form-group .selection .select2-selection.select2-selection--single .select2-selection__arrow {
 top: 18px;
 right: 10px;
}
.form-group .select2-container {
 width: 100% !important;
}

/******************************* Responsive *******************************/
  @media (min-width: 1901px) {
      .overlay-content{
          padding: 0px 140px;
          bottom: 100px;
      }
      .float-profile.profile-2{
          right: 11%;
          bottom: 30%;
      }
      .float-profile.profile-3 {
          transform: translateY(210px);
          left: 34%;
      }
      .float-profile.profile-4{
          left: 57%;
          top: 50px;
      }
      .float-profile.profile-5{
          top: 26%;
      }

  }

    @media (min-width: 1201px) and (max-width: 1412px) {
      .overlay-content h2{
          font-size: 30px;
      }
    }
   
    @media (max-width: 1200px) {
     .overlay-content h2{
         font-size: 27px;
     }
     .profile-1 .float-profile-tag {
         width: 45px;
         height: 45px;
         display: inline-flex;
         padding: 10px;
         left: 60px;
     }
     .float-profile.profile-3{
         left: 22%;
         top: 15%;
     }
     .float-profile.profile-5{
         right: 6%;
         top: 25%;
     }

    }

    @media (max-width: 1024px) {
   .overlay-content{
       bottom: 30px;
   }
   .overlay-content h2 {
       font-size: 25px !important;
       font-weight: 600;
       letter-spacing: inherit !important;
   }
   .float-profile > img{
       width: 60px;
       height: 60px;
   }
   .profile-1 .float-profile-tag {
       width: 45px;
       height: 45px;
       display: inline-flex;
       padding: 10px;
       left: 60px;
   }
   .float-profile.profile-3{
       left: 22%;
       top: 15%;
   }
   .float-profile.profile-5{
       right: 6%;
       top: 25%;
   }

  }
  @media (max-width: 767px) {
  .login-left {
     display: none;
  }
  .overlay-content {
      left: 20px;
      bottom: 20px;
  }
  .overlay-content h2 {
      font-size: 22px;
  }
  }
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-15px);
    }
    100% {
      transform: translateY(0px);
    }
  }

  .wp-core-ui .button-primary.focus, 
  .wp-core-ui .button-primary:focus{
   box-shadow: none !important;
   outline: none !important;
   border: none !important;
  }
  .login .notice-error{
   color: red;
  }

  #website_url,
label[for="website_url"] {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}
.password-changed-msg-container{
display: flex;
flex-direction: column;
gap: 5px;
margin-top: 10px;
}
.password-changed-msg-container p{
 font-size: 16px;
}