/**
 * PDF Gate Styles
 *
 * Centered card layout for the email capture form.
 * Mobile-responsive with loading/error states.
 *
 * @package Zentratec
 */

.pdf-gate {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 60vh;
	padding: 40px 20px;
}

.pdf-gate__card {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
	max-width: 440px;
	width: 100%;
	padding: 48px 40px;
	text-align: center;
}

.pdf-gate__icon {
	color: #c0392b;
	margin-bottom: 24px;
}

.pdf-gate__icon svg {
	display: inline-block;
}

.pdf-gate__heading {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 12px;
	color: #222;
}

.pdf-gate__filename {
	font-size: 14px;
	color: #666;
	background: #f5f5f5;
	display: inline-block;
	padding: 6px 14px;
	border-radius: 4px;
	margin: 0 0 20px;
	word-break: break-all;
	font-family: monospace;
}

.pdf-gate__description {
	font-size: 16px;
	color: #444;
	margin: 0 0 28px;
	line-height: 1.5;
}

.pdf-gate__form {
	text-align: left;
}

.pdf-gate__label {
	display: block;
	font-size: 14px;
	font-weight: 500;
	color: #333;
	margin-bottom: 6px;
}

.pdf-gate__input {
	display: block;
	width: 100%;
	padding: 12px 14px;
	font-size: 16px;
	border: 1px solid #ddd;
	border-radius: 6px;
	outline: none;
	transition: border-color 0.2s;
	box-sizing: border-box;
}

.pdf-gate__input:focus {
	border-color: #c0392b;
	box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.1);
}

.pdf-gate__input--error {
	border-color: #e74c3c;
}

.pdf-gate__error {
	font-size: 13px;
	color: #e74c3c;
	min-height: 20px;
	margin: 8px 0 0;
}

.pdf-gate__submit {
	display: block;
	width: 100%;
	padding: 14px;
	margin-top: 16px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: #c0392b;
	border: none;
	border-radius: 6px;
	cursor: pointer;
	transition: background 0.2s, opacity 0.2s;
}

.pdf-gate__submit:hover {
	background: #a93226;
}

.pdf-gate__submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.pdf-gate__privacy {
	font-size: 12px;
	color: #999;
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.4;
}

@media (max-width: 480px) {
	.pdf-gate__card {
		padding: 32px 24px;
	}

	.pdf-gate__heading {
		font-size: 20px;
	}
}
