body {
  height: 100vh;
  background: url(../image/login-bg.png) no-repeat center/cover;
  --blue: #50aaf9;
}
.l-blue {
  color: #50aaf9;
}
.login-foot {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #50aaf948;
}
.login-foot p {
  height: 30px;
  line-height: 30px;
  color: #fff;
}
.login-page {
  padding: 160px 0 40px;
}
.login-card {
  height: 680px;
  background: url(../image/login-card.png) no-repeat center/cover;
}

.l-form {
  width: 325px;
  margin: 0 auto;
}
.l-form-item {
  margin-bottom: 11px;
  border-radius: 5px;
  width: 100%;
  height: 48px;
  border: 1px solid #d6d6d6;
  padding: 0 18px;
  transition: all 0.2s;
}
.l-form-item:focus-within {
  border-color: var(--blue);
}
.l-input {
  flex: 1;
  font-size: 16px;
  line-height: 2;
  color: #444;
}
.l-input::placeholder {
  font-size: 15px;
  color: #a6a6a6;
}

.l-btn1, .l-btn2 {
  color: #fff;
  border-color: transparent;
  cursor: pointer;
  margin-bottom: 15px;
}
.l-btn1 {
  background-color: var(--blue);
}
.l-btn2 {
  background-color: rgba(67, 207, 124, 1);
}

.l-tab {
  margin: 0 40px;
  position: relative;
  font-size: 16px;
  color: #808080;
  cursor: pointer;
}
.l-tab.current {
  font-size: 18px;
  font-weight: 500;
  color: #383838;
}
.l-tab.current::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 52px;
  height: 6px;
  border-radius: 17px;
  background: linear-gradient(90deg, rgba(207, 231, 253, 1) 0%, rgba(80, 170, 249, 1) 100%);
}