.pdfgate-overlay {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: rgba(0, 0, 0, 0.6);
	z-index: 999999;
	display: none;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
.pdfgate-overlay.pdfgate-open {
	display: flex;
}
body.pdfgate-lock {
	overflow: hidden;
}
.pdfgate-box {
	background: #fff;
	max-width: 420px;
	width: 100%;
	padding: 30px;
	border-radius: 8px;
	position: relative;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.pdfgate-close {
	position: absolute;
	top: 8px;
	right: 12px;
	background: none;
	border: none;
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	color: #666;
}
.pdfgate-box h3 {
	margin-top: 0;
	margin-bottom: 16px;
	padding-right: 20px;
}
.pdfgate-form {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.pdfgate-email {
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 15px;
}
.pdfgate-hp {
	position: absolute;
	left: -9999px;
}
.pdfgate-consent {
	display: flex;
	gap: 8px;
	align-items: flex-start;
	font-size: 13px;
	color: #555;
}
.pdfgate-consent input {
	margin-top: 3px;
}
.pdfgate-submit {
	background: #222;
	color: #fff;
	border: none;
	padding: 12px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 15px;
}
.pdfgate-submit:disabled {
	opacity: 0.6;
	cursor: default;
}
.pdfgate-error {
	color: #c0392b;
	font-size: 13px;
	margin: 0;
	display: none;
}
.pdfgate-thanks {
	font-size: 14px;
	color: #2a7a2a;
}
