html.octt-password-locked,
html.octt-password-locked body {
  min-height: 100%;
  overflow: hidden !important;
}

html.octt-password-locked body > :not(#octt-password-gate) {
  pointer-events: none !important;
  user-select: none !important;
  visibility: hidden !important;
}

html.octt-password-unlocked #octt-password-gate {
  display: none !important;
}

#octt-password-gate {
  align-items: center;
  background: #fff;
  color: #222;
  display: flex;
  font-family: "Helvetica Neue", Arial, sans-serif;
  inset: 0;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  position: fixed;
  text-align: center;
  z-index: 2147483647;
}

.octt-password-card {
  box-sizing: border-box;
  margin: 0 auto;
  max-width: 420px;
  padding: 24px 0;
  width: 100%;
}

.octt-password-lock {
  border: 2px solid #222;
  border-radius: 50%;
  box-sizing: border-box;
  height: 64px;
  margin: 0 auto 36px;
  position: relative;
  width: 64px;
}

.octt-password-lock::before {
  border: 3px solid #222;
  border-bottom: 0;
  border-radius: 14px 14px 0 0;
  box-sizing: border-box;
  content: "";
  height: 19px;
  left: 19px;
  position: absolute;
  top: 14px;
  width: 22px;
}

.octt-password-lock::after {
  background: #222;
  border-radius: 2px;
  box-shadow: 0 8px 0 #222;
  content: "";
  height: 13px;
  left: 21px;
  position: absolute;
  top: 31px;
  width: 20px;
}

.octt-password-form {
  margin: 0 auto;
  max-width: 320px;
}

.octt-password-input-row {
  display: flex;
  width: 100%;
}

.octt-password-input {
  appearance: none;
  background: #fff;
  border: 2px solid #222;
  border-radius: 0;
  border-right: 0;
  box-sizing: border-box;
  color: #222;
  flex: 1 1 auto;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  height: 54px;
  letter-spacing: .05em;
  min-width: 0;
  outline: none;
  padding: 0 16px;
}

.octt-password-input::placeholder {
  color: #6f6f6f;
  opacity: 1;
}

.octt-password-input:focus {
  box-shadow: inset 0 0 0 1px #222;
}

.octt-password-submit {
  align-items: center;
  appearance: none;
  background: #222;
  border: 2px solid #222;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: flex;
  flex: 0 0 56px;
  height: 54px;
  justify-content: center;
  padding: 0;
}

.octt-password-submit::before {
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  content: "";
  display: block;
  height: 11px;
  transform: rotate(45deg);
  width: 11px;
}

.octt-password-submit:disabled {
  cursor: wait;
  opacity: .7;
}

.octt-password-error {
  color: #9b1c1c;
  font-size: 13px;
  line-height: 1.35;
  margin: 14px 0 0;
  min-height: 18px;
}

@media (max-width: 600px) {
  #octt-password-gate {
    align-items: flex-end;
    padding: 25px;
  }

  .octt-password-card {
    padding-bottom: 8px;
  }
}
