.login-modal {
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
}

#login {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: #fff;
  padding: 50px;
  border-radius: 8px;
}

#login .form {
  width: 440px;
  position: relative;
}

#login .form .modal-img {
  position: absolute;
  right: 0;
  top: 0;
  transform: translateY(-70%);
}

#login .form .switch-btn {
  display: flex;
  margin-bottom: 50px;
}

#login .form .switch-btn div {
  margin-right: 50px;
  line-height: 32px;
  position: relative;
  cursor: pointer;
}

#login .form .switch-btn div.active {
  font-size: 32px;
}

#login .form .switch-btn div.active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  height: 4px;
  width: 20px;
  background: #264D9D;
}

.no-login {
  text-align: center;
  color: #8D8D8D;
  font-size: 14px;
}

.no-login img {
  width: 100%;
  vertical-align: top;
  margin-bottom: 32px;
}
