/* Password form container */
.post-password-form {
  max-width: 600px;
  margin: 60px auto;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

/* Hermana-only message */
.hermana-protected-note {
  color: black;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 5px;
  font-size: 18px;
}

/* Form layout */
.post-password-form .input-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 30px;
}

/* "Password:" label */
.password-label {
  font-size: 1rem;
  font-weight: bold;
  color: black;
  font-family: 'Roboto', sans-serif;
}

/* Password input */
.post-password-form input[type="password"] {
  height: 45px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  padding: 0 10px;
  width: 250px;
  box-sizing: border-box;
  font-family: 'Roboto', sans-serif;
}

/* Enter button – styled to match site */
.post-password-form input[type="submit"] {
  height: 45px;
  font-size: 0.875rem;
  border-radius: 6px;
  background-color: transparent;
  border: 2px solid #e21e28;
  color: #e21e28;
  padding: 0 25px;
  cursor: pointer;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

.post-password-form input[type="submit"]:hover {
  transform: scale(1.05);
}
@media only screen and (max-width: 600px) {

  /* Form container padding */
  .post-password-form {
    padding: 0 20px;
  }

  /* Hermana statement padding */
  .hermana-protected-note {
    padding: 0 20px;
    margin-top: 30px;
    margin-bottom: 10px;
  }

  /* Form layout */
  .post-password-form .input-wrap {
    flex-direction: column;
    align-items: center;
    gap: 4px; /* tighter spacing */
    margin-top: 5px;
    margin-bottom: 15px;
  }

  /* Password input */
  .post-password-form input[type="password"] {
    width: 90vw;
    max-width: 350px;
  }

  /* Submit button */
  .post-password-form input[type="submit"] {
    width: auto;
    max-width: 100%;
  }

  /* Label */
  .password-label {
    text-align: center;
    width: 100%;
    margin-bottom: 3px;
  }
}