body,html{
  width: 100%;height: 100%;
}
body{
  display: flex;
  position: relative;
}
.logo{
  position: absolute;
  left: 100px;top: 40px;
  width: 133px;height: 49px;
}
.logo > a {
  display: inline-block;
  width:100%;
  height:100%;
}
.logo img{
  width: 100%;height: 100%;
}
.left{
  flex: 0 0 50%;
}
#form{
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  min-height: 500px;
  background: #fff;
  box-shadow: -10px 0 20px #ccc;
  z-index: 10;
  padding: 5%;
}
.left .title{
  width: 100%;
}
.left .title span{
  font-size: 30px;font-weight: bold;color: #333;
}
.left .title p{
  font-size: 14px;color: #999;
  display: inline-block;
  padding-left: 10px;
}
.left .block{
  overflow: hidden;
  padding-top: 40px;
}
.left .block .item{
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  width: 40%;
  margin-right: 5%;
  float: left;
  display: flex;
  align-items: center;
}
.left .block .item span{
  flex: none;
  font-size: 16px;
}
.left .block .item input{
  flex: auto;
  min-width: 0;
  height: 45px;
  line-height: 45px;
  padding: 0 10px;
}
.button{
  margin-top: 30px;
}
.button button{
  width: 100px;
  height: 40px;
  color: #fff;
  background: #FF9443;
  border: 0;
  cursor: pointer;
  transition: 0.2s all;
  border-radius: 2px;
}
.button button:hover{
  background: #FF6C28;
}
.right{
  flex: 0 0 50%;
  font-size: 0;
  background: linear-gradient(#FF9544, #FF6C28);
  padding: 0 10%;
  display: flex;
  align-items: center;
  position: relative;
}
.right img{
  width: 100%;
  height: auto;
}
.right .box1{
  width: 40px;
  height: auto;
  position: absolute;
  left: 20%;
  top: 30%;
}
.right .box2{
  width: 80px;
  height: auto;
  position: absolute;
  right: 10%;
  bottom: 30%;
}
.right .box3{
  width: 50px;
  height: auto;
  position: absolute;
  left: 10%;
  bottom: 10%;
}