#s-container {
  min-height: 50vh;
  position: relative;
}

#s-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #011D1B;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

#s-prompt {
  text-align: center;
  max-width: 400px;
  width: 90%;
  padding: 2rem;
}

#s-fox {
  display: block;
  margin: 0 auto 2rem;
  opacity: 1;
}

#s-pwd {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  padding: 0.875rem 1rem;
  font-size: 22px;
  border: none;
  border-bottom: 1px solid #718054;
  background: #252525;
  color: #e5e5e5;
  font-family: 'source serif 4', serif;
  text-align: center;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
}

#s-pwd::placeholder {
  color: #999;
  opacity: 0.6;
}

#s-pwd:focus {
  outline: none;
  border-bottom-color: #B2C78B;
}

#s-error {
  margin-top: 1rem;
  color: #ff6b6b;
  font-size: 18px;
  font-family: 'source serif 4', serif;
  min-height: 1.5rem;
}

#s-content {
  display: none;
  padding: 2rem 0;
}

.s-msg {
  max-width: 65ch;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 22px;
  font-family: 'source serif 4', serif;
  color: #E5E5E5;
}
