.login-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
  display: flex;
  justify-content: space-between;
}

.login-main .login-value {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  height: 100%;
}
.login-value img {
  width: 250px;
  height: 150px;
}
.login-main .form-main {
  width: 60%;
  height: 100%;
  background: #141414;
  border-radius: 30px 0px 0px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.login-content {
  width: 400px;
  margin-top: -100px;
  color: #F0F5FF;
  box-sizing: border-box;
}
.title-line {
  display: flex;
  align-items: center;
  font-size: 28px;
  opacity: 0.85;
  font-weight: bold;
}
.logo-icon {
  width: 48px;
  height: 32px;
  margin-right: 8px;
}
.title-attr {
  opacity: 0.85;
  font-size: 32px;
  font-weight: bold;
  margin-top: 50px;
  margin-bottom: 26px;
}
.login-action {
  width: 400px;
  margin: 0 auto;
}
.login-btn {
  width: 400px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  color: #fff;
  background: #0D67FF;
  box-shadow: 0px 4px 8px 0px rgba(26,90,216,0.32);
  border-radius: 4px 4px 4px 4px;
  cursor: pointer;
}
.login-form {
  box-sizing: border-box;
}
.input-box input {
  width: 400px;
  height: 52px;
  line-height: 52px;
  background: transparent;
  border-radius: 4px 4px 4px 4px;
  outline: none;
  border: 1px solid #27292B;
  color: #BFBFBF;
  padding: 18px 13px;
  box-sizing: border-box;
  margin-bottom: 26px;
  transition: all .2s;
}
.input-box input::placeholder {
  color: rgba(240,245,255,0.25);
}
.input-box input:focus {
  border: 1px solid #BFBFBF;
}
.remenber {
  display: flex;
  align-items: center;
  font-size: 12px;
  margin-bottom: 26px;
  color: rgba(240,245,255,0.25);
}
.remenber input {
  margin-right: 4px;
  outline: none;
  cursor: pointer;
}
.record-line {
  width: 400px;
  text-align: center;
  opacity: 0.45;
  color: #F0F5FF;
  font-size: 12px;
  position: absolute;
  bottom: 20px;
  cursor: pointer;
}