.otgs-development-site-front-end {
  display: none;
}

.protected-post {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100dvw;
  height: 100dvh;
}

.protected-post form {
  display: block;
  max-width: 100%;
}

.protected-post div {
  display: flex;
  flex-flow: row nowrap;
  padding: 0 15px;
}

.protected-post h3 {
  font-size: 20px;
  max-width: 450px;
  margin: 0 0 10px;
}

.protected-post h3,
.protected-post label {
  padding: 0 15px;
}

.protected-post label {
  display: block;
  font-size: 16px;
  font-weight: var(--medium);
}

.protected-post [type='password'] {
  display: block;
  width: 100%;
  font-size: 16px;
  border: 1px solid var(--color-iron);
  padding: 6px 12px;
}

.protected-post [type='submit'] {
  display: inline-block;
  font-size: 16px;
  color: var(--color-white);
  background-color: var(--color-primary);
  border: unset;
  padding: 0 12px;
}

@media (max-width: 768px) {
  .protected-post h3 {
    max-width: 345px;
  }

  .protected-post [type='password'] {
    width: 260px;
  }
}
