.page {
  height: calc(100vh - 65px);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.8);
  /* background-size: cover; */
  /* background-repeat: no-repeat; */
  /* background-image: url(../images/login_bg.jpg); */
}

h1 {
  position: fixed;
  top: 20vh;
  color: #000;
  font-size: 38px;
}



.form {
  min-width: 300px;
  padding: 50px;
  border: 10px solid rgba(255, 255, 255, 0.6);
  border-radius: 3px;
  backdrop-filter: blur(10px);
  background-color: rgba(0, 0, 0, 0.1);
  box-shadow: 7px 6px 22px rgba(0, 0, 10, 0.1);
}

.login-btn {
  background-color: var(--primary-color);
}

.btn-group {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}

.btn-group span {
  user-select: none;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 15px;
  color: #000;
  letter-spacing: 2px;
}

.btn-group span:nth-child(2) {
  text-decoration: underline;
}

.btn-group span:hover {
  opacity: 0.8;
}

.btn-group span:active {
  opacity: 0.5;
}

.form .item {
  margin-bottom: 20px;
  background-color: rgba(255, 255, 255, 0.7);
  color: #000;
  border-color: transparent;
  /* border-color: #ddd; */
  flex: 1;
}

.form .item::placeholder {
  color: #666;
}

.layui-input-group {
  display: flex;

}

.layui-input-group .login-btn {
  border-radius: 0;
}

.layui-input-group .layui-input-wrap {
  flex: 1;
}

.code-btn {
  padding: 0 10px;
}

.go-home {
  color: #000;
  text-align: center;
  display: block;
  background-color: rgba(255, 255, 255, 0.4);
  margin-top: 1rem;
  padding: 0.7rem;
  letter-spacing: 2px;
}

.go-home:hover {
  color: var(--primary-color);
  /* opacity: 1; */
  /* font-size: 16px; */
  font-weight: bold;
  transition: all 0.3s;
}

.go-home:active {
  background-color: var(--primary-color);
  color: #fff;
}