.full-height {
  height: 100%;
}

.full-width {
  width: 100%;
}

.login-page-wrapper {
  height: 100%;
}

.login-page-wrapper .background {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  opacity: 0.6;
  background-image: url('/images/login-bg.jpg');
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.login-page-wrapper .header {
  position: absolute;
  z-index: 100;
  left: 0;
  top: 0;
  right: 0;
  padding: 16px 64px;
}

.login-page-wrapper .logo {
  height: 72px;
}

.password-toggle {
  position: absolute;
  right: 13%;
  top: 53%;
  transform: translateY(-50%);
  cursor: pointer;
}

.left-container {
  height: 100%;
  background-color: rgba(255, 255, 255, 0.80);
  padding: 64px;
  padding-top: 104px;
}

.left-container .inner-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.left-container .inner-container img {
  width: 100%;
  max-width: 500px;
}

.right-container {
  height: 100%;
  background-color: rgba(199, 199, 199, 0.65);
  padding: 64px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.right-container .inner-container {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}


@media (max-width: 575px) {
  .login-page-wrapper .header {
    padding: 16px 16px;
  }

  .left-container {
    padding: 16px;
    padding-top: 104px;
  }

  .right-container {
    padding: 16px;
    padding-top: 104px;
    padding-bottom: 16px;
  }
}

@media (min-width: 1366px) {
  .password-toggle {
    right: 15%;
    top: 53%;
  }
}
@media (min-width: 1440px) {
  .password-toggle {
    right: 16%;
    top: 52%;
  }
}