body,
html {
  font-size: 16px;
}
.box {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url(../images/bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.box .logo {
  position: absolute;
  top: 0.5rem;
  left: 2.75rem;
}
.box .logo img {
  width: 23.5rem;
  height: 4.625rem;
}
.box .log-content {
  width: 87.875rem;
  height: 46.875rem;
  background-image: url(../images/inner-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 10.25rem;
  padding-left: 6rem;
}
.box .log-content h1 {
  display: inline-block;
  font-size: 3.125rem;
  font-weight: bold;
  color: #000;
  position: relative;
  margin-bottom: 3.375rem;
}
.box .log-content .input-control {
  display: flex;
  align-items: center;
  border: 1px solid #787878;
  border-radius: 3rem;
  overflow: hidden;
  width: 35.875rem;
  height: 5.125rem;
  position: relative;
  margin-bottom: 1.75rem;
}
.box .log-content .input-control::after {
  display: block;
  content: '';
  width: 2.125rem;
  height: 2.5rem;
  position: absolute;
  left: 2.625rem;
  top: 50%;
  transform: translateY(-50%);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.box .log-content .input-control.user-input::after {
  background-image: url(../images/user-icon.png);
}
.box .log-content .input-control.pwd-input::after {
  background-image: url(../images/lock-icon.png);
}
.box .log-content .input-control input {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: none;
  padding-left: 6.875rem;
  font-size: 1.875rem;
  color: #858687;
  background-color: #fff;
}
.box .log-content .input-control input::placeholder {
  color: #858687;
}
.box .log-content .text {
  width: 35.875rem;
}
.box .log-content .text p {
  font-size: 1.25rem;
  color: #858687;
  text-align: right;
}
.box .log-content .text p a {
  color: #ff4057;
}
.box .log-content .submit-btn {
  width: 35.875rem;
  height: 5.125rem;
  background-color: #f64147;
  border-radius: 3rem;
  font-size: 1.875rem;
  line-height: 5.125rem;
  text-align: center;
  color: #fff;
  border: none;
  margin-top: 3rem;
  cursor: pointer;
}
