/*****************************
Authentification
*****************************/
.login-page {
  position: relative;
}

.login-posly {
  /* height: 100%; */
  display: flex;
  align-items: start;
  justify-content: center;
  margin: 0 auto;
  padding: 20px 12px;
}

.login-posly .logo {
  display: block;
  margin-bottom: 30px;
  text-align: center;
  width: 98px;
  margin-left: auto;
  margin-right: auto;
}

.login-posly .login-main {
  width: 550px;
  margin: 0 auto;
  padding: 0px 60px;
  border-radius: 10px;
}

@media only screen and (max-width: 575px) {
  .login-posly .login-main {
    width: auto;
    padding: 20px;
  }
}

.login-posly .login-main .theme-form h1 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #2b2b2b;
  font-family: "Roboto", sans-serif;
}

.login-posly .login-main .theme-form p {
  margin-bottom: 25px;
  font-size: 14px;
  color: #898989;
}

.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;
}


.login-window {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

.login-img {
  width: 60%;
}

.login-wrap {
  width: 40%;
  position: relative;
}

.login-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.login_footer {
  text-align: center;
  background: #f1f1f1;
  padding: 10px 20px;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.footer-logo img {
  max-width: 150px;
  margin-bottom: 10px;
}

.login_footer_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 13px;
  color: #333333;
}
.login_footer .phone a, .login_footer .mail a, .login_footer .website a {
  color: #4d4d4d;
  font-weight: 600;
}