.login {
  height: 100%;
  min-height: 100vh;
  background-image: url(../images/signup/bg.png);
  background-size: 100% auto;
}
.login.publicBody {
  padding: unset;
}
.login .publicTop {
  padding-top: 57rem;
  padding-bottom: 100rem;
}
.content {
  padding: 0 30rem 0 15rem;
}
.content .banner {
  margin-bottom: 25rem;
}
.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: 10rem;
  height: 10rem;
  position: relative;
}
.content .info label > input[type='checkbox']::before {
  content: ' ';
  width: 12rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
  background-image: url(../images/public/unchecked.png);
  background-size: 100% 100%;
  background-color: transparent;
}
.content .info label > input[type='checkbox']:checked {
  width: 10rem;
  height: 10rem;
  position: relative;
}
.content .info label > input[type='checkbox']:checked::before {
  content: ' ';
  width: 12rem;
  height: 12rem;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
  background-image: url(../images/public/checked.png);
  background-color: #f4f2ea;
  background-size: 100% 100%;
}
.content .info label > span {
  color: #666666;
  margin-left: 10rem;
  font-size: 11rem;
}
.content .info > div {
  color: #333333;
  font-size: 11rem;
  font-weight: bold;
}
.content .surebtn {
  margin-top: 10rem;
}
