.container {
  width: 100%;
  max-width: 916px;
  margin: 123px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.container .header {
  display: flex;
  align-items: center;
  margin-bottom: 43px;
}
.container .header span {
  background: #434343;
  width: 3px;
  height: 98px;
  margin: 0 52px;
}
.container .body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px;
}
.container .body .title {
  font-size: 38px;
  line-height: 50px;
  color: #ee721a;
  font-weight: 700;
  margin-bottom: 28px;
}
.container .body .description {
  font-size: 25px;
  line-height: 50px;
  color: #3c4f5e;
  font-weight: 400;
  margin-bottom: 28px;
}
.container .body #tip {
  font-size: 21px;
  line-height: 50px;
  text-decoration: underline;
  color: #ee721a;
  font-weight: 500;
  margin-bottom: 38px;
  cursor: pointer;
}
.container .body .input-container {
  width: 374px;
  height: 80px;
  border-radius: 41px;
  background-color: #ffffff;
  border: 2px solid #dddddd;
  display: flex;
  overflow: hidden;
  margin-bottom: 28px;
}
.container .body .input-container span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 76px;
  height: 76px;
  background: #dddddd;
  flex-shrink: 0;
  border-radius: 38px;
  font-size: 21px;
  line-height: 50px;
  color: #3c4f5e;
  font-weight: 500;
}
.container .body .input-container input {
  width: 100%;
  border: none;
  outline: none;
  padding: 0 20px;
  font-size: 21px;
  letter-spacing: 1px;
  line-height: 50px;
  color: #434343;
  font-weight: 500;
}
.container .body .continue {
  width: 374px;
  font-weight: 700;
}

#modal {
  position: fixed;
  width: 100%;
  height: 150vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3137254902);
  align-items: center;
  justify-content: center;
  display: none;
}
#modal.show {
  display: flex;
}
#modal .modal-container {
  width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 45px;
  box-shadow: 0.077px 8.329px 43.5px rgba(0, 0, 0, 0.15);
  background-color: #ffffff;
  padding: 43px 80px 50px;
}
#modal .modal-container .info {
  width: 80px;
  margin-bottom: 20px;
}
#modal .modal-container .title {
  font-size: 32px;
  color: #ee721a;
  font-weight: 700;
  margin-bottom: 24px;
}
#modal .modal-container .description {
  font-size: 22px;
  line-height: 25px;
  color: #374955;
  text-align: center;
  margin-bottom: 28px;
}
#modal .modal-container .description span {
  font-weight: 700;
  color: #ee721a;
}
#modal .modal-container .password {
  display: flex;
  background: #ddd;
  border-radius: 100px;
  margin-bottom: 16px;
  position: relative;
}
#modal .modal-container .password span {
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  font-size: 18px;
  font-weight: 500;
  top: 22px;
  left: 30px;
  color: #9F9F9F;
}
#modal .modal-container .password img {
  height: 70px;
}
#modal .modal-container .tip {
  font-size: 22px;
  line-height: 25px;
  color: #ee721a;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
#modal .modal-container .hint {
  font-size: 18px;
  line-height: 20px;
  color: #374955;
  text-align: center;
  margin-bottom: 33px;
}
#modal .modal-container #close {
  width: 320px;
  height: 64px;
  font-size: 24px;
}/*# sourceMappingURL=login.css.map */