.vv-locked {
	max-width: 480px;
	text-align: center;
	padding: 40px 20px;
}

.vv-locked__icon {
	font-size: 3rem;
	margin-bottom: 16px;
	display: block;
}

.vv-locked__title {
	margin-bottom: 16px;
}

.vv-locked__message {
	margin-bottom: 32px;
	opacity: 0.8;
}

.vv-locked__actions {
	display: flex;
	gap: 16px;
	justify-content: center;
	flex-wrap: wrap;
}

/*
 * Content-lock visibility (migrated from the "Locked Content Filter CSS"
 * WPCode snippet). The body.vv-locked-* classes are now set server-side by
 * VV_Content_Lock from real subscription status — see class-vv-content-lock.php.
 */
#locked-guest,
#locked-subscriber {
	display: none !important;
}

body.vv-locked-guest #locked-guest {
	display: flex !important;
}

body.vv-locked-subscriber #locked-subscriber {
	display: flex !important;
}

/* ───────────────────────────────────────────────────────────────────────────
 * Registration form (migrated from WPCode snippet [6198] "VV Registration CSS").
 * Styles the [vv_registration_form] shortcode — see class-vv-registration.php.
 * ─────────────────────────────────────────────────────────────────────────── */

.vv-register-form {
    max-width: 480px;
    margin: 0 auto;
    font-family: 'DM Sans', sans-serif;
}

.vv-register-errors {
    margin-bottom: 20px;
}

.vv-register-error {
    background: #F7E0D8;
    border: 2px solid #D9745A;
    color: #D9745A;
    padding: 10px 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    margin: 0 0 8px 0;
}

.vv-register-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.vv-register-field label {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #1A1A1A;
}

.vv-register-field input[type="text"],
.vv-register-field input[type="email"],
.vv-register-field input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #1A1A1A !important;
    background: #EBE2CE !important;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    color: #1A1A1A;
    box-sizing: border-box;
    border-radius: 8px !important;
    box-shadow: none !important;
    transition: border-color 0.15s ease;
}

.vv-register-field input[type="text"]:focus,
.vv-register-field input[type="email"]:focus,
.vv-register-field input[type="password"]:focus {
    outline: none;
    border-color: #1B4FBF !important;
}

.vv-register-field--checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.vv-register-field--checkbox input[type="checkbox"] {
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #1A1A1A !important;
    accent-color: #1B4FBF;
}

.vv-register-field--checkbox label {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.vv-register-field--checkbox label a {
    color: #1B4FBF;
    text-decoration: underline;
}

.vv-register-hint {
    font-size: 0.8rem;
    color: #1A1A1A;
    opacity: 0.5;
    font-family: 'DM Sans', sans-serif;
}

.vv-register-submit {
    display: block;
    width: 100%;
    padding: 14px 32px;
    background: #1B4FBF !important;
    color: #FFFAF5 !important;
    border: 2px solid #1A1A1A !important;
    box-shadow: 3px 3px 0 #1A1A1A !important;
    border-radius: 8px !important;
    font-family: 'DM Sans', sans-serif;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    margin-top: 8px;
    transition: box-shadow 0.1s ease, transform 0.1s ease;
}

.vv-register-submit:hover {
    background: #1A45A8 !important;
    box-shadow: 2px 2px 0 #1A1A1A !important;
    transform: translate(1px, 1px);
    color: #FFFAF5 !important;
}

.vv-register-signin {
    text-align: center;
    margin-top: 24px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    color: #1A1A1A;
}

.vv-register-signin a {
    color: #1B4FBF;
    font-weight: 700;
    text-decoration: underline;
}

/* ───────────────────────────────────────────────────────────────────────────
 * Password reset (migrated from WPCode snippet [6473] "VV Password Reset CSS").
 * Styles [vv_password_reset_form] and [vv_password_reset_confirm] —
 * see class-vv-password-reset.php.
 * ─────────────────────────────────────────────────────────────────────────── */

.vv-reset-wrap {
    max-width: 480px;
    margin: 0 auto;
    font-family: inherit;
}

.vv-reset-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.vv-reset-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vv-reset-field label {
    font-size: 13px;
    font-weight: 700;
    color: #1A1A1A;
    letter-spacing: 0.02em;
}

.vv-reset-field input[type="email"],
.vv-reset-field input[type="password"] {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    font-family: inherit;
    color: #1A1A1A;
    background-color: #ffffff;
    border: 2px solid #CCCCCC;
    border-radius: 8px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.15s ease;
}

.vv-reset-field input[type="email"]:focus,
.vv-reset-field input[type="password"]:focus {
    border-color: #1A1A1A;
}

.vv-reset-field input[type="email"]::placeholder,
.vv-reset-field input[type="password"]::placeholder {
    color: #AAAAAA;
}

.vv-reset-submit {
    align-self: flex-start;
    margin-top: 4px;
}

.vv-reset-error {
    padding: 14px 18px;
    background-color: #FAE8E3;
    border: 2px solid #D9745A;
    border-radius: 8px;
    color: #D9745A;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.vv-reset-error a {
    color: #D9745A;
    text-decoration: underline;
}

.vv-reset-info {
    padding: 14px 18px;
    background-color: #D6EFE6;
    border: 2px solid #2D8B5F;
    border-radius: 8px;
    color: #1A4A35;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .vv-reset-submit {
        align-self: stretch;
        text-align: center;
    }
}
