/* Password prompt for Internal tools. Gold #b8a064 matches the Mindful Design header. */

html.md-internal-locked .md-content,
html.md-internal-locked .md-sidebar--secondary {
  display: none !important;
}

.md-internal-gate {
  position: fixed;
  top: var(--md-header-height, 3.6rem);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
  background: rgba(249, 249, 249, 0.96);
  box-sizing: border-box;
}

.md-internal-gate[hidden] {
  display: none !important;
}

.md-internal-gate__card {
  width: 100%;
  max-width: 22rem;
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid #dcdcde;
  border-radius: 0.5rem;
  background: #ffffff;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.08);
}

.md-internal-gate__title {
  margin: 0 0 0.4rem;
  color: #b8a064;
  font-size: 1.15rem;
  font-weight: 600;
}

.md-internal-gate__lead {
  margin: 0 0 1rem;
  color: #50575e;
  font-size: 0.9rem;
  line-height: 1.45;
}

.md-internal-gate__label {
  display: block;
  margin-bottom: 0.35rem;
  color: #1d2327;
  font-size: 0.8rem;
  font-weight: 600;
}

.md-internal-gate__input {
  display: block;
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.65rem 0.7rem;
  border: 1px solid #dcdcde;
  border-radius: 0.3rem;
  background: #ffffff;
  color: #1d2327;
  font-size: 16px; /* avoid iOS zoom on focus */
  line-height: 1.3;
  box-sizing: border-box;
}

.md-internal-gate__input:focus {
  outline: 2px solid #b8a064;
  outline-offset: 1px;
  border-color: #b8a064;
}

.md-internal-gate__error {
  margin: -0.35rem 0 0.75rem;
  color: #b32d2e;
  font-size: 0.8rem;
}

.md-internal-gate__button {
  display: block;
  width: 100%;
  padding: 0.7rem 1rem;
  border: none;
  border-radius: 0.3rem;
  background: #b8a064;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
}

.md-internal-gate__button:hover,
.md-internal-gate__button:focus {
  background: #93845e;
}

.md-internal-gate__button:focus {
  outline: 2px solid #b8a064;
  outline-offset: 2px;
}

[data-md-color-scheme="slate"] .md-internal-gate {
  background: rgba(30, 32, 34, 0.96);
}

[data-md-color-scheme="slate"] .md-internal-gate__card {
  border-color: #3d4144;
  background: #1e2022;
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.35);
}

[data-md-color-scheme="slate"] .md-internal-gate__title {
  color: #e1ca8e;
}

[data-md-color-scheme="slate"] .md-internal-gate__lead {
  color: #c4c7ca;
}

[data-md-color-scheme="slate"] .md-internal-gate__label {
  color: #ffffff;
}

[data-md-color-scheme="slate"] .md-internal-gate__input {
  border-color: #3d4144;
  background: #151617;
  color: #ffffff;
}

[data-md-color-scheme="slate"] .md-internal-gate__input:focus {
  outline-color: #e1ca8e;
  border-color: #e1ca8e;
}

[data-md-color-scheme="slate"] .md-internal-gate__button {
  background: #b8a064;
  color: #1d2327;
}

[data-md-color-scheme="slate"] .md-internal-gate__button:hover,
[data-md-color-scheme="slate"] .md-internal-gate__button:focus {
  background: #e1ca8e;
}
