body{
  height:100vh;
  margin: 0;
}

/* 为所有具有滚动条的元素自定义滚动条样式 */
::-webkit-scrollbar {
  width: 0px; /* 设置滚动条的宽度 */
}
 
/* 设置滚动条的轨道（背景）样式 */
::-webkit-scrollbar-track {
  background: #f1f1f1; /* 设置轨道的背景颜色 */
}
 
/* 设置滚动条的滑块（滚动条）样式 */
::-webkit-scrollbar-thumb {
  background: #888; /* 设置滑块的背景颜色 */
}
 
/* 设置滚动条滑块的hover样式 */
::-webkit-scrollbar-thumb:hover {
  background: #555; /* 设置滑块的hover背景颜色 */
}
.registrationPage{
  width: inherit;
  height: inherit;
  background: url('../image/login/Group3476.png') no-repeat 100% 100%;
  position:relative;
} 
.GoLogIn{
  position:absolute;
  right:100px;
  top:35px;
}
.formContent{
  position: absolute;
  transform: translate(-50%,-50%);
  top:45%;
  left:50%;
}
input{
  width: 322px;
  height: 40px;
  background: #FFFFFF;
  border: 1px solid #D9D9D9;
  outline: none;/*清除input点击之后的黑色边框*/
  color:12px;
  color:#999;
  padding-left:15px;
}
.icon{
  color: #2d5bf7;
}
.titleBox{
  display: flex;
  font-size:14px;
  color:#999;
  margin-bottom:20px;
}
.title{
  text-align:right;
  width:68px;
  margin-right:8px;
}
.loginButton{
  width: 322px;
  height:40px;
  background: #2D5BF7;
  border-radius:20px;
  border:0;
  margin-top:27px;
  font-size:18px;
  color:#fff;
}
.buttonStyle{
  display: flex;
  justify-content: end;
}
.checkTheAgreement{
  cursor: pointer;
}