* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
html {
  overflow: hidden;
  /* 设置垂直滚动条的宽度 */
  /* 滚动条滑块的样式 */
  /* 滚动条轨道的样式 */
}
html body.login {
  background: #ecf0f3;
}
html #login {
  position: relative;
  width: 600px;
  min-height: 600px;
  padding: 25px;
  margin: 0;
  background-color: #ecf0f3;
  border-radius: 12px;
  overflow: hidden;
  box-sizing: border-box;
}
html #login .notice {
  border: none;
  background: none;
  box-shadow: none;
  text-align: center;
}
html form#loginform,
html form#registerform,
html form#lostpasswordform,
html form#resetpassform {
  background: none;
  border: none;
  box-shadow: none;
}
html form#loginform input,
html form#registerform input,
html form#lostpasswordform input,
html form#resetpassform input {
  outline: none;
  border: none;
  background-color: #fff;
  transition: 0.25s ease;
  border-radius: 8px;
  box-shadow: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #f9f9f9;
}
html form#loginform input:focus,
html form#registerform input:focus,
html form#lostpasswordform input:focus,
html form#resetpassform input:focus {
  box-shadow: inset 4px 4px 4px #d1d9e6, inset -4px -4px 4px #f9f9f9;
}
html form#loginform .submit,
html form#registerform .submit,
html form#lostpasswordform .submit,
html form#resetpassform .submit {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 100%;
}
html form#loginform .submit .button.wp-generate-pw.hide-if-no-js.skip-aria-expanded,
html form#registerform .submit .button.wp-generate-pw.hide-if-no-js.skip-aria-expanded,
html form#lostpasswordform .submit .button.wp-generate-pw.hide-if-no-js.skip-aria-expanded,
html form#resetpassform .submit .button.wp-generate-pw.hide-if-no-js.skip-aria-expanded {
  width: 180px;
  height: 50px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.15px;
  background-color: #4b70e2;
  color: #f9f9f9;
  box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #f9f9f9;
  border: none;
  outline: none;
}
html form#loginform .submit #wp-submit,
html form#registerform .submit #wp-submit,
html form#lostpasswordform .submit #wp-submit,
html form#resetpassform .submit #wp-submit {
  width: 180px;
  height: 50px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.15px;
  background-color: #4b70e2;
  color: #f9f9f9;
  box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #f9f9f9;
  border: none;
  outline: none;
}
html form#loginform .submit #wp-submit:hover,
html form#registerform .submit #wp-submit:hover,
html form#lostpasswordform .submit #wp-submit:hover,
html form#resetpassform .submit #wp-submit:hover {
  background-color: #3a5abf;
  box-shadow: 12px 12px 20px #d1d9e6, -12px -12px 20px #f9f9f9;
}
html form#loginform .forgetmenot,
html form#registerform .forgetmenot,
html form#lostpasswordform .forgetmenot,
html form#resetpassform .forgetmenot {
  display: block;
  width: 100%;
}
html #login-wrapper {
  display: flex;
  justify-content: center;
  margin: 15vh auto 0;
  width: fit-content;
  box-shadow: 10px 10px 10px #d1d9e6, -10px -10px 10px #f9f9f9;
}
html #login-wrapper #login-sibling {
  width: 400px;
  background: #ecf0f3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 200;
  box-shadow: 4px 4px 10px #d1d9e6, -4px -4px 10px #f9f9f9;
  padding: 50px 55px;
  transition: 1.25s;
}
html #login-wrapper #login-sibling::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background-color: #ecf0f3;
  box-shadow: inset 8px 8px 12px #d1d9e6, inset -8px -8px 12px #f9f9f9;
  bottom: -60%;
  left: -60%;
}
html #login-wrapper #login-sibling::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #ecf0f3;
  box-shadow: inset 8px 8px 12px #d1d9e6, inset -8px -8px 12px #f9f9f9;
  transition: 1.25s;
  top: -30%;
  left: 60%;
  width: 300px;
  height: 300px;
}
html #login-wrapper #login-sibling .l_s_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 2;
  color: #181818;
  padding-bottom: 30px;
}
html #login-wrapper #login-sibling .l_s_des {
  font-size: 14px;
  letter-spacing: 0.25px;
  text-align: center;
  line-height: 1.6;
}
html #login-wrapper #login-sibling .l_s_but {
  width: 180px;
  height: 50px;
  border-radius: 25px;
  margin-top: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.15px;
  background-color: #4b70e2;
  color: #f9f9f9;
  box-shadow: 8px 8px 16px #d1d9e6, -8px -8px 16px #f9f9f9;
  border: none;
  outline: none;
  cursor: pointer;
}
html #login-wrapper #login-sibling .l_s_but:hover {
  background-color: #3a5abf;
  box-shadow: 12px 12px 20px #d1d9e6, -12px -12px 20px #f9f9f9;
}
html #language-switcher {
  display: none;
}
html .tipswindown {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px 30px 100px 30px;
  overflow-y: auto;
  transition: all 0.3s linear;
}
html .tipswindown > h2 {
  font-size: 25px;
}
html .tipswindown > p {
  font-size: 14px;
}
html .tipswindown::-webkit-scrollbar {
  width: 5px;
}
html .tipswindown::-webkit-scrollbar-thumb {
  border-radius: 5px;
  background-color: #4b70e2;
}
html .tipswindown::-webkit-scrollbar-track {
  background-color: #ffffff;
}
html .haveRead {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 75px;
  background-color: #fff;
  box-shadow: 4px 4px 10px #d1d9e6, -4px -4px 10px #f9f9f9;
  transition: all 0.3s linear;
}
html .haveRead_button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: auto;
  padding: 6px 0px;
  border-radius: 4px;
  cursor: pointer;
}
html .haveRead_button_yes {
  background-color: #4b70e2;
  border: 1px solid #4b70e2;
  color: #fff;
}
html .haveRead_button_no {
  background-color: #b6b7b8;
  border: 1px solid #b6b7b8;
  color: #fff;
}
@media screen and (max-width: 750px) {
  html #login-wrapper {
    margin: 7vh auto 0;
    box-shadow: none;
  }
  html #login-wrapper #login-sibling {
    display: none;
  }
  html #login-wrapper #login {
    width: 100%;
  }
  html #login-wrapper #login input {
    font-size: 18px;
  }
  html #login-wrapper #login .submit {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 750px) {
  html {
    overflow: visible;
    height: auto;
  }
}
