/*****************************
Authentification
*****************************/



.top-left-logo {
  position: absolute;
  width: 150px; 
  height: auto; 
  left: 20px; 
  top: 20px; 
  z-index: 10; 
}

/* Media query for responsiveness */
@media (max-width: 768px) { /* For tablets and smaller screens */
  .top-left-logo {
      width: 120px; 
      top: 15px;
      left: 15px;
  }
}

@media (max-width: 480px) { /* For mobile screens */
  .top-left-logo {
      width: 100px; 
      top: 10px;
      left: 10px;
  }
}
.top-right-image {
  position: absolute;
  width: 150px; 
  height: auto;
  right: 20px; /* Position it to the right */
  top: 20px; /* Position it near the top */
  z-index: 10; 
}

/* Media queries for responsiveness */
@media (max-width: 768px) { /* For tablets and smaller screens */
  .top-right-image {
      width: 120px; 
      top: 15px;
      right: 15px;
  }
}

@media (max-width: 480px) { /* For mobile screens */
  .top-right-image {
      width: 100px; /* Further reduce size for mobile */
      top: 10px;
      right: 10px;
  }
}



.login-posly .logo {
  display: block;
  margin-bottom: 30px;
  text-align: center;
  width: 98px;
  margin-left: auto;
  margin-right: auto; }
  .login-posly .login-main {
    width: 540px;
    padding: 40px;
    border-radius: 10px;
    -webkit-box-shadow: 0 0 37px rgba(8, 21, 66, 0.05);
    box-shadow: 0 0 37px rgba(8, 21, 66, 0.05);
    margin: 0 auto;
    background: linear-gradient(138.48deg, rgba(255, 255, 255, 0.4) 13.46%, rgba(255, 255, 255, 0.1) 84.66%);
    backdrop-filter: blur(5px);
    border-radius: 34px;
  }
  
  @media only screen and (max-width: 575px) {
    .login-posly .login-main {
      width: auto;
      padding: 20px; } }
  .login-posly .login-main .theme-form h4 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #2b2b2b; }
  .login-posly .login-main .theme-form p {
    margin-bottom: 25px;
    font-size: 14px;
    color: #2b2b2b; }
  .login-posly .login-main .theme-form .form-group {
    position: relative; }
    @media only screen and (max-width: 575px) {
      .login-posly .login-main .theme-form .form-group {
        margin-bottom: 5px !important; } }
    .login-posly .login-main .theme-form .form-group label {
      font-size: 14px;
      letter-spacing: 0.4px;
      position: relative; }
    .login-posly .login-main .theme-form .form-group input {
      background-color: #f3f3ff;
      -webkit-transition: all 0.3s ease;
      transition: all 0.3s ease; }
    .login-posly .login-main .theme-form .form-group .checkbox input[type="checkbox"] {
      opacity: 0; }
    .login-posly .login-main .theme-form .form-group .checkbox label {
      padding-left: 10px;
      margin-top: 10px;
      font-size: 14px;
      margin-left: 16px; }
  .login-posly .login-main .theme-form .link {
    position: absolute;
    top: 10px;
    right: 0;
    font-size: 14px; }
    @media only screen and (max-width: 575px) {
      .login-posly .login-main .theme-form .link {
        position: unset; } }

.checkbox label::before {
content: "";
display: inline-block;
position: absolute;
width: 19px;
height: 19px;
left: 0;
margin-left: -16px;
border-radius: 3px;
background-color: #f9f9fa;
border: 1px solid #dfdfdf; }
.checkbox label::after {
content: "";
width: 9px;
height: 9px;
top: 0;
left: 0;
border-radius: 0.05em;
background-color: var(--accent-color);
position: absolute;
transform: scale(0);
transition: 0.5s transform ease; }
.checkbox input:checked + label::after {
transform: scale(1);
width: 9px;
height: 9px;
background: #7366ff;
left: -11px;
top: 6px;
border-radius: 3px;}