.login {
  height: 100%;
  background-image: url(../images/login/login_bg.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.content {
  margin-top: 250rem;
}
.content .info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content .info label {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content .info label > input[type="checkbox"] {
  width: 14rem;
  height: 14rem;
  position: relative;
}
.content .info label > input[type="checkbox"]::before {
  content: " ";
  width: 17rem;
  height: 17rem;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
  background-image: url(../images/public/unchecked.png);
  background-size: 100% 100%;
  background-color: #101216;
}
.content .info label > input[type="checkbox"]:checked {
  width: 14rem;
  height: 14rem;
  position: relative;
}
.content .info label > input[type="checkbox"]:checked::before {
  content: " ";
  width: 17rem;
  height: 17rem;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
  background-image: url(../images/public/checked.png);
  background-size: 100% 100%;
  background-color: #101216;
}
.content .info label > span {
  margin-left: 10rem;
  font-size: 11rem;
}
.content .info > div {
  color: #0f60ff;
  font-size: 11rem;
}
.content .surebtn {
  margin-top: 10rem;
}
