body {
  margin: 0;
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  background-color: #e9ebf1;
}

.login--logo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: hsl(var(--primary) / .1);
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;

  img {
    width: 40px;
    height: 40px;
    object-fit: cover;
  }
}

.login_area {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 999;
}

.login {
  width: 380px;
  background: #fff;
  padding: 38px 30px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  border-radius: 20px;
  position: relative;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.login__header {
  margin-bottom: 10px;
}

.login__header h2 {
    font-size: 35px;
    line-height: 40px;
    font-weight: 700;
    text-align: center;
    color: hsl(var(--black));
    margin-bottom: 10px;
}

.login__header .title-two {
  font-size: 25px;
}

.login__header p {
  color: hsl(0deg, 2%, 49%);
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.login__body h4 {
  text-align: center;
  padding: 15px 0;
  text-transform: uppercase;
}

.login__body .field {
  position: relative;
}

.login__body .field input {
  width: 100%;
  display: inline-block;
  margin: 8px 0 0px 0;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  padding-right: 60px;
  background-color: transparent;
}

.login__body .field .show-pass {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.remember {
  color: #3f3f3f;
  font-weight: 600;
}

#remember {
  position: relative;
  top: 1px;
  accent-color: #00adad;
}

label {
  color: #3f3f3f;
  margin-bottom: 0 !important;
  font-weight: 600;
  font-size: 16px;
}

.login__footer {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.login__footer .remember_wrapper span {
  color: rgba(29, 29, 29, 0.6509803922);
}

.login__footer a {
  color: hsl(var(--primary));
  font-weight: 500;
}

.login__footer a:hover {
  text-decoration: underline;
}

.sign-in {
  display: block;
  width: 100%;
  width: 100%;
  display: inline-block;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 17px;
  background: hsl(var(--primary));
  color: #fff;
}

.sign-in:hover {
  background: hsl(var(--primary) / 0.8);
  color: #fff;
  transition: 0.3s ease-in-out;
  border: 1px solid transparent;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
  -webkit-text-fill-color: hsl(var(--black)) !important;
}

.form--check {
  .form-check-input {
    box-shadow: none;
    background-color: transparent;
    box-shadow: none !important;
    border: 0;
    position: relative;
    border-radius: 5px;
    width: 18px;
    height: 18px;
    border: 1px solid #ddd;
    margin-top: 0px;

    &:checked {
      background-color: hsl(var(--primary)) !important;
      border-color: hsl(var(--primary)) !important;
      box-shadow: none;

      &[type="checkbox"] {
        background-image: none;
      }

      &::before {
        position: absolute;
        content: "\f00c";
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        color: hsl(var(--white));
        font-size: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
      }
    }
  }

  .form-check-label {
    padding-left: 8px;
    color: hsl(var(--black) / 0.7);
    font-size: 16px;
    font-weight: 600;
    line-height: 29px;
  }
}

@media (max-width: 768px) {
  .login_area {
    padding: 50px 0;
  }

  .login {
    max-width: 100%;
  }

  .login::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .login {
    padding: 25px;
    width: 85%;
  }

  .login::before {
    left: 0;
  }
}

@keyframes anim {
  from {
    transform: rotate(360deg);
  }

  to {
    transform: rotate(0deg);
  }
}