body.post-password-required main > .ct-container-full {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	min-height: 70vh;
	padding: 80px 20px;
	background-color: var(--theme-palette-color-5);
}

body.post-password-required main > .ct-container-full > article.post-password-required {
	flex: 1 1 auto;
	max-width: none;
	width: 100%;
	min-width: 0;
	--has-boxed: var(--false);
	--has-wide: var(--true);
}

body.post-password-required .entry-content.is-layout-constrained {
	max-width: 100%;
	width: 100%;
}

/* Scope styles ONLY to password-protected content views */
.post-password-required .post-password-form {
	width: 100%;
	max-width: 560px;
	margin: 8rem auto;
	padding: 32px;
	text-align: center;
}

.post-password-required .post-password-form > h2 {
	margin-bottom: 3rem;
	font-size: 2rem;
}

/* Intro text */
.post-password-required .post-password-form > p:first-child {
	margin: 0 0 18px;
	font-size: 1.05rem;
	line-height: 1.6;
}

/* Field row */
.post-password-required .post-password-form p:last-child {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: end;
	margin: 0;
}

/* Label */
.post-password-required .post-password-form label {
	display: block;
	margin-bottom: 1rem;
	font-weight: 600;
}

/* Password input */
.post-password-required .post-password-form input[type="password"] {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid var(--theme-form-field-border-color, #c8ccd0);
	border-radius: 8px;
	background: var(--theme-palette-color-8, #fff);
	outline: none;
}
.post-password-required .post-password-form input[type="password"]:focus {
	border-color: var(--theme-form-field-border-focus-color, #5b9bd5);
}

/* Submit button (matches your button styling) */
.post-password-required .post-password-form input[type="submit"] {
	/*padding: 12px 20px;*/
	width: 100%;
	margin-top: 1rem;
	border: 0;
	border-radius: 8px;
	background: var(--theme-palette-color-1);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}
.post-password-required .post-password-form input[type="submit"]:hover {
	background: var(--theme-palette-color-2);
}

/* Small helper text style if you add any */
.post-password-required .post-password-help {
	margin-top: 12px;
	font-size: .925rem;
	opacity: .8;
}