.auth-login .content {
  max-width: 400px;
  margin: 0 auto 40px auto;
  text-align: center;
}
.auth-login .content form {
  margin-bottom: 24px;
}
.auth-login .content .input-wrapper {
  position: relative;
  margin-bottom: 25px;
}
.auth-login .content .password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #8b8b8b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.auth-login .content .password-toggle:hover {
  color: #4a4a4a;
}
.auth-login .content .password-toggle svg {
  width: 20px;
  height: 20px;
}
.auth-login .content .password-toggle.showing #cross-line {
  display: none;
}
.auth-login .content .form-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 24px;
}
.auth-login .content .remember-me {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  font-size: 14px;
  color: #4a4a4a;
  margin: 0;
}
.auth-login .content .remember-me input[type=checkbox] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.auth-login .content .remember-me input[type=checkbox]:checked ~ .checkmark {
  background-color: #c4f547;
  border-color: #c4f547;
}
.auth-login .content .remember-me input[type=checkbox]:checked ~ .checkmark:after {
  display: block;
}
.auth-login .content .remember-me .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 2px solid #d0d0d0;
  border-radius: 4px;
  margin-right: 8px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.auth-login .content .remember-me .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid #1a1a1a;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.auth-login .content .forgot-password {
  font-size: 14px;
  color: #4a4a4a;
  text-decoration: underline;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
.auth-login .content .forgot-password:hover {
  color: #1a1a1a;
}
.auth-login .content .login-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}