html,
body {
  width: 100%;
  height: 100%;
  /* width: 1920px;
  height: 1080px; */
  margin: 0px;
  padding: 0px;
  overflow: hidden;
}

.root {
  width: 100%;
  height: 100%;
}
.background{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content{
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.brandLogo {
  width: 35%;
  height: 15%;
  margin: 0 auto;
  margin-top: 100px;
}
.brandLogoImg {
  width: 100%;
  height: 100%;
}
.login-box {
  width: 45%;
  height: 55%;
  margin: 0 auto;
  margin-top: 3%;
  position: relative;
}
.LittleManIcon {
  width: 55%;
  margin-top: -9%;
  margin-left: 25%;
}
.login-from{
  width: 100%;
  height: 100%;
  border-radius: 25px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0px 2px 30px 10px rgba(199, 201, 255, 1);
  filter: blur(0px);
  margin-top: -5%;
  display: flex;

}
.loginFromLeft{
  width: 48%;
  height: 90%;
  margin-left: 2%;
  margin-top: 2.5%;
  border-right: 2px solid rgb(216, 251, 255);
}
.forkliftImg{
  width: 80%;
  margin-top: 25%;
  margin-left: 5%;
}
.fontImg{
  width: 80%;
  margin-left: 5%;
}
.login-from-right{
  width: 48%;
  height: 90%;
  margin-top: 5%;
  color: rgb(100, 186, 243);
}
.signInForm{
  width: 100%;
  height: 100%;
}
.login-from-right>p{
  text-align: center;
}

/* 输入框样式 */
.input-box{
  width: 80%;
  height: 12%;
  margin: 8% auto;
  border-radius: 25px;
  background: linear-gradient(180deg, rgba(36, 233, 255, 1) 0%, rgba(204, 251, 255, 1) 100%);
 }
.input-box>img{
  width: 5%;
  margin-left: 4%;
}
.input-box>input{
  width: 80%;
  height: 100%;
  outline: none;
  background: transparent;
  border: none;
  outline: medium;
  color: rgb(0,0,0);
}

.input-box>input::placeholder {
  color: rgb(44, 167, 249);
}

input:-webkit-autofill , textarea:-webkit-autofill, select:-webkit-autofill {
    -webkit-text-fill-color: rgb(0,0,0); !important;
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    background-color:transparent !important;
    background-image: none;
    transition: background-color 50000s ease-in-out 0s; //背景色透明 生效时长 过渡效果 启用时延迟的时间
 }
/* 语言样式 */
.select{
  width: 90%;
  margin-left: 10%;
  text-align: left;
}
.select>select{
  height: 25px;
  border: 1px solid rgb(2, 69, 255); /* 设置边框颜色为红色 */
  color: rgb(44, 167, 249); /* 设置文字颜色为蓝色 */
  background-color: rgb(174, 221, 252);
}
/*  */
.checkbox-box{
  width: 90%;
  margin-left: 10%;
  text-align: left;
  margin-top: 5%;
}
.checkbox-box>input{
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.checkbox-box>span{
  font-size: 14px !important;
}
/* 按钮 */
.button{
  width: 90%;
  height: 8%;
  margin-left: 10%;
  margin-top: 10%;
  text-align: left;
}
.button>button{
  width: 30%;
  height: 100%;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, rgba(103, 108, 240, 1) 0%, rgba(150, 224, 255, 100) 100%);
  color: white;
}

.feedback{
  width: 90%;
  position: fixed;
  left: 5%;
  top: -60%;
}

.FeedbackPrompt{
    color:red;
}

ul{
    list-style-type: none;
}