/* Lock screen shown in place of a protected page. */
.cpp-lock-body {
	margin: 0;
	min-height: 100vh;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
	color: #1f2430;
	background: #f4f5f7;
	background-image: radial-gradient(circle at 20% 20%, #ffe6ee 0%, transparent 45%),
		radial-gradient(circle at 80% 0%, #e6f0ff 0%, transparent 40%);
}

.cpp-lock-wrap {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	box-sizing: border-box;
}

.cpp-lock-card {
	width: 100%;
	max-width: 440px;
	background: #fff;
	border-radius: 18px;
	padding: 36px 32px 28px;
	box-shadow: 0 18px 50px rgba(31, 36, 48, .12);
	text-align: center;
	box-sizing: border-box;
}

.cpp-lock-logo {
	margin-bottom: 18px;
}

.cpp-lock-logo img {
	max-width: 180px;
	height: auto;
}

.cpp-lock-title {
	margin: 0 0 12px;
	font-size: 22px;
	line-height: 1.35;
	font-weight: 700;
}

.cpp-lock-message {
	margin-bottom: 22px;
	font-size: 15px;
	line-height: 1.6;
	color: #5a6270;
}

.cpp-lock-message p {
	margin: 0 0 8px;
}

.cpp-lock-error {
	margin-bottom: 18px;
	padding: 11px 14px;
	border-radius: 10px;
	background: #fdecec;
	color: #b91c1c;
	font-size: 14px;
	line-height: 1.5;
	text-align: left;
}

.cpp-lock-form input[type="password"] {
	width: 100%;
	padding: 13px 15px;
	font-size: 16px;
	border: 1px solid #d6dae2;
	border-radius: 10px;
	box-sizing: border-box;
	transition: border-color .15s ease, box-shadow .15s ease;
}

.cpp-lock-form input[type="password"]:focus {
	outline: none;
	border-color: #cc3366;
	box-shadow: 0 0 0 3px rgba(204, 51, 102, .14);
}

.cpp-lock-form button {
	width: 100%;
	margin-top: 12px;
	padding: 13px 18px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #ff6a88, #cc3366);
	border: 0;
	border-radius: 10px;
	cursor: pointer;
	transition: transform .12s ease, box-shadow .12s ease;
}

.cpp-lock-form button:hover {
	transform: translateY(-1px);
	box-shadow: 0 8px 20px rgba(204, 51, 102, .28);
}

.cpp-lock-foot {
	margin: 22px 0 0;
	font-size: 13px;
	color: #98a0ae;
}

.cpp-lock-foot a {
	color: #98a0ae;
	text-decoration: none;
}

.cpp-lock-foot a:hover {
	color: #cc3366;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}

@media (max-width: 480px) {
	.cpp-lock-card {
		padding: 28px 20px 22px;
		border-radius: 14px;
	}

	.cpp-lock-title {
		font-size: 19px;
	}
}
