.auth-register .content {
  max-width: 440px;
  margin: 0 auto 40px auto;
  text-align: center;
}
.auth-register .content form {
  margin-bottom: 24px;
}
.auth-register .content .input-wrapper {
  position: relative;
  margin-bottom: 25px;
}
.auth-register .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-register .content .password-toggle:hover {
  color: #4a4a4a;
}
.auth-register .content .password-toggle svg {
  width: 20px;
  height: 20px;
}
.auth-register .content .password-toggle.showing #cross-line {
  display: none;
}
.auth-register .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;
}