.auth-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  padding: 3px;
  width: 100%;
  height: 30px;
  font-size: 16px;
  line-height: 20px;
  font-weight: normal;
  font-family: HelveticaNeue, Arial;
  letter-spacing: 0.5px;
  color: #ececec;
  box-sizing: border-box;
}
.auth-btn:hover {
  color: #fff;
}
.auth-btn:active {
  background-image: linear-gradient(0.25turn, #466e92, #538dad, #466e92)
}
.page-menu .auth-btn {
  display: block;
  width: 100%;
  height: 95px;
  margin-top: auto;
  padding-top: 63px;
  padding-right: 5px;
  color: #fff;
  text-align: center;
  background-color: transparent;
  background-image: url('/admin/ui/img/exit.png');
  background-position: 60% 0;
  background-size: 55px;
  background-repeat: no-repeat;
}
.page-menu .auth-btn:hover {
  opacity: 0.8;
}
.page-menu .auth-btn:active {
  filter: blur(1px);
}

.page-auth {
  justify-content: center;
  align-items: center;
  display: none;
  width: 100%;
  height: 100%;
  margin-left: -50px;
}
.page-auth.active {
  display: flex;
}
.auth-form {
  display: block;
  width: 270px;
  height: auto;
  padding: 15px 20px 20px;
  background-color: #f1f1f1;
  font-family: HelveticaNeue, Arial;
  letter-spacing: 0.9px;
  background-image: linear-gradient(to right, #fff, #ececec);
  box-shadow: 0 0 10px 0px #d3d3d3;
}
.auth-title {
  font-size: 16px;
  line-height: 18px;
  margin: 5px 0 20px;
}
.auth-label {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 18px;
}
.auth-input {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  width: 180px;
  height: 25px;
  margin-top: 3px;
  padding: 8px 5px 3px;
  border: 1px solid #d3d3d3;
  box-sizing: border-box;
  font-family: HelveticaNeue, Arial;
  font-size: 16px;
  line-height: 18px;
  letter-spacing: 0.9px;
  background-color: #f1f1f1;
  color: black;
}
.auth-form .auth-btn {
  width: 120px;
  height: 27px;
  margin-left: auto;
  padding: 7px 5px 5px;
  font-size: 14px;
  line-height: 15px;
  font-weight: normal;
}
@media (max-width: 768px) {
  .page-auth {
    margin-left: -20px;
  }
  .auth-btn {
    margin-top: 5px;
    font-size: 9px;
    line-height: 12px;
  }
  .auth-form .auth-btn {
    margin-top: 20px;
  }
}