.post-password-form{
	position: relative;
	margin: 10px auto 50px auto;
	padding: 25px;
	background: #fff;
	border-radius: 10px;
	box-shadow: 0 6px 25px rgb(0 0 0 / 28%);
	text-align: center;
}

.post-password-form input[type="password"] {
	width: 100%;
	padding: 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	margin-bottom: 15px;
	font-size: 16px;
}

.post-password-form input[type="submit"] {
	width: 100%;
	background: #171e3b;
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 16px;
	transition: all 0.3s ease;
}

.post-password-form input[type="submit"]:hover {
	background: #050c29;
}

.post-password-form-invalid-password {
	display: flex;
	position: absolute;
	bottom: 0;
	width: 100%;
	justify-content: center;
}

.pp-error {
	background: #e5e5e5;
    color: #414141;
    border: 1px solid #bfbfbf;
    padding: 10px 12px;
    border-radius: 8px;
    margin: 0 0 12px;
    text-align: center;
    font-weight: 600;
}