/* Full-page password screen: while the encryptcontent decrypt form is present,
   hide the theme chrome and center the form over the whole viewport. */
body:has(#mkdocs-decrypt-form) .md-header,
body:has(#mkdocs-decrypt-form) .md-tabs,
body:has(#mkdocs-decrypt-form) .md-sidebar,
body:has(#mkdocs-decrypt-form) .md-footer,
body:has(#mkdocs-decrypt-form) .md-content h1 {
  display: none;
}

#mkdocs-decrypt-form {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  background: var(--md-default-bg-color);
}
