.login-box {
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    position: fixed;
    top: 0;
    left: 0;
    display:none;
    z-index: 99999;
}
.login {
    background: #fff;
    width: 500px;
    height: 350px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
	display:grid;
}
.login-header {
    width: 100%;
    height: 40px;
    background: rgb(67, 67, 67);
    color: #fff;
    font-size: 16px;
    padding: 10px 5px;
}
.login-close-icon {
    position: absolute;
    top: 0;
    right: 0;
    margin: 10px 5px;
    cursor: pointer;
}
.login-logo-icon {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.login-input-box {
    height: 40px;
    width: 75%;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.login-input-box:first-child {
    margin-top: 30px;
}
.login-input-icon {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.login-input-user-content,
.login-input-pass-content{
    height: 100%;
    width: 100%;
    border-bottom: 1px solid rgb(67, 67, 67) !important;
    outline:none;
    padding-left: 30px;
}
.login-input-user-error,
.login-input-pass-error{
    width: 100%;
    color: red;
    font-size: 14px;
    display: none;
}
.login-button-login {
    width: 75%;
    height: 40px;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border: none;
    background: rgb(67, 67, 67);
    color: #fff;
    font-size: 16px;
}

#loginfailed{
	display:none;
	color:red;
}

#loading {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #10101061;
}

#loading i {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 50px;
  height: 50px;
  border: 4px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  animation: loadingAnimation 0.8s infinite Linear;
  margin: auto;
}

@keyframes loadingAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}