* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  font-family: "Karla", sans-serif !important;
  height: 100%;
  width: 100%;
}
.main-login-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  align-items: stretch
}
.main-login-wrapper .modules-wrapper {
  width: 40%;
}
.main-login-wrapper .login-form-wrapper,
.main-login-wrapper .authentication-form {
  width: 60%;
}
.main-login-wrapper .modules-wrapper {
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  background-color: #f1f3f8;
}
::-moz-placeholder {
  color: #505050;
}
:-ms-input-placeholder {
  /** notice that ie has only a single colon) */
  color: #505050;
}
::-webkit-input-placeholder {
  color: #505050;
}
::placeholder {
  color: #505050 !important;
  font-size: 16px;
}
/* Tablet landscape */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  .main-login-wrapper .modules-wrapper {
    width: 50%;
  }
  .main-login-wrapper .login-form-wrapper,
  .main-login-wrapper .authentication-form {
    width: 50%;
  }
}

/* Tablet portrait and mobile */
@media only screen and (max-width: 767px) {
  .main-login-wrapper {
    flex-direction: column;
    position: relative;
  }
  .main-login-wrapper .modules-wrapper {
    width: 100%;
    position: fixed;
    top: 0;
    left: -100%;
    height: 100vh;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    overflow-y: auto;
  }
  .main-login-wrapper .modules-wrapper.show {
    left: 0;
  }
  .main-login-wrapper .login-form-wrapper,
  .main-login-wrapper .authentication-form {
    width: 100%;
  }
}

/* Hide hamburger menu on desktop */
@media only screen and (min-width: 768px) {
  .hamburger-menu {
    display: none !important;
  }
}

/* Tablet portrait and mobile */
@media only screen and (max-width: 767px) {
  /* Hamburger Menu Styles */
  .hamburger-menu {
    display: flex;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1001;
    width: 40px;
    height: 40px;
    background-color: #4C6EF5;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  }
  .hamburger-menu__line {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
  }
  .hamburger-menu.active .hamburger-menu__line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .hamburger-menu.active .hamburger-menu__line:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.active .hamburger-menu__line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}