html.cet-lock-pending,
html.cet-lock-pending body {
  min-height: 100%;
  background: #f6f7fb;
}

html.cet-lock-pending body > :not(.cet-lock) {
  display: none !important;
}

.cet-lock {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #f6f7fb;
  color: #202833;
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
}

.cet-lock-panel {
  width: min(620px, 100%);
  padding: 50px 40px;
  border-top: 6px solid #c71920;
  background: #fff;
  text-align: center;
  box-shadow: 0 20px 60px rgba(20, 38, 68, 0.12);
}

.cet-lock h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 700;
}

.cet-lock p {
  margin: 16px 0 0;
  color: #667085;
  font-size: 16px;
  line-height: 1.8;
}

.cet-lock-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 10px;
  margin-top: 26px;
}

.cet-lock input,
.cet-lock button {
  min-height: 46px;
  border: 1px solid #d8dde6;
  font: inherit;
}

.cet-lock input {
  min-width: 0;
  padding: 0 14px;
  outline: 0;
}

.cet-lock input:focus {
  border-color: #143b63;
  box-shadow: 0 0 0 3px rgba(20, 59, 99, 0.1);
}

.cet-lock button {
  background: #c71920;
  color: #fff;
  cursor: pointer;
}

.cet-lock button:hover {
  background: #a90f16;
}

.cet-lock-error {
  display: none;
  margin-top: 12px;
  color: #c71920;
  font-size: 14px;
}

.cet-lock-error.is-visible {
  display: block;
}

@media (max-width: 640px) {
  .cet-lock {
    padding: 16px;
  }

  .cet-lock-panel {
    padding: 40px 22px;
  }

  .cet-lock h1 {
    font-size: 27px;
  }

  .cet-lock p {
    font-size: 15px;
  }

  .cet-lock-form {
    grid-template-columns: 1fr;
  }
}
