/* ─────────────────────────────────────────────
   On-brand password-protected screen
   Restyles Divi's default et_password_form() output
   ───────────────────────────────────────────── */

.et_pb_section:has(.et_password_protected_form) {
    background-color: #2B0313;
    padding: 10vh 5vw;
}

.et_password_protected_form {
    max-width: 480px;
    margin: 0 auto;
    font-family: 'Manrope', sans-serif;
}

.et_password_protected_form h1 {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #ffffff;
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 0.5em;
}

.et_password_protected_form > p {
    font-family: 'Manrope', sans-serif;
    color: #E3BFD1;
    font-size: 1rem;
    margin-bottom: 1.5em;
}

.et_password_protected_form form p {
    margin: 0 0 1.25em;
}

.et_password_protected_form label {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #E3BFD1;
    margin-bottom: 0.5em;
}

.et_password_protected_form input[type="password"] {
    font-family: 'Manrope', sans-serif;
    display: block;
    width: 100%;
    max-width: 320px;
    padding: 0.85em 1.1em;
    border: 1px solid #a66687;
    border-radius: 6px;
    background-color: #ffffff;
    color: #2B0313;
    font-size: 1rem;
    box-sizing: border-box;
}

.et_password_protected_form input[type="password"]:focus {
    outline: none;
    border-color: #E3BFD1;
    box-shadow: 0 0 0 3px rgba(227, 191, 209, 0.35);
}

.et_password_protected_form .et_submit_button {
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    background-color: #E3BFD1;
    color: #2B0313;
    border: none;
    border-radius: 999px;
    padding: 0.85em 2em;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.et_password_protected_form .et_submit_button:hover {
    background-color: #ffffff;
    color: #2B0313;
}
