body {
  background-color: #f3f0f0;
}

.alert {
  width: 400px;
  position: fixed;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  z-index: 10000;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}

.panels-container {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.panel {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-around;
  text-align: center;
  height: 100%;
  z-index: 6;
  pointer-events: all;
  padding: 3rem 17% 2rem 12%;
}

.content:before {
  content: "";
  position: absolute;
  height: 2000px;
  width: 2000px;
  top: -10%;
  right: 48%;
  transform: translateY(-50%);
  background-image: linear-gradient(-45deg, #4481eb 0%, green 100%);
  transition: 1.8s ease-in-out;
  border-radius: 50%;
  z-index: 6;
}

.image {
  width: 100%;
  margin-top: 150px;
  transition: transform 1.1s ease-in-out;
  transition-delay: 0.4s;
}



/* 登录框 */
.demo-login-container {
  width: 400px;
  margin: 150px 0 0 1100px;
  border: 1px solid skyblue;
  padding: 20px 40px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 5px 5px 15px;
}

.demo-login-other .layui-icon {
  position: relative;
  display: inline-block;
  margin: 0 2px;
  top: 2px;
  font-size: 44px;
}

.demo-login-other p {
  margin-top: 5px;
  margin-bottom: 15px;
  text-align: center;
  color: gray;
}

.demo-login-other span {
  display: flex;
  justify-content: space-around;
}


[name="password"] {
  background-color: #f5f5f5;
  border: 1px solid gray;
  border-radius: 5px;
}

[name="username"] {
  background-color: #f5f5f5;
  border: 1px solid gray;
  border-radius: 5px;
}

[name="captcha"] {
  background-color: #f5f5f5;
  border: 1px solid gray;
  border-radius: 5px;
}

h2 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 36px;
}

.forget {
  color: #257192;
}

.layui-btn {
  height: 40px;
  font-size: 18px;
  font-weight: 600;
}

.layui-btn:hover {
  color: black;
}

.layui-col-xs7{
  height: 40px;
}