.post-password-form {
  margin: 60px auto;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  border: 1px solid #eee;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.post-password-form p {
  margin-bottom: 16px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.post-password-form p:first-of-type {
  font-weight: 500;
  color: #111;
  font-size: 16px;
}

.post-password-form label {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
  color: #666;
}

.post-password-form input[type="password"] {
  width: 100%;
  padding: 12px 14px;
  margin-top: 6px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: all 0.2s ease;
  outline: none;
}

.post-password-form input[type="password"]:focus {
  border-color: #000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.post-password-form input[type="submit"] {
  margin-top: 14px;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #111;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.post-password-form input[type="submit"]:hover {
  background: #333;
}

.post-password-form input[type="submit"]:active {
  transform: scale(0.98);
}
