.dpa-login-wrap {
	max-width: 400px;
	margin: 0 auto;
}
.dpa-login-form .dpa-input {
	width: 100%;
	padding: 8px 10px;
	margin-bottom: 4px;
	box-sizing: border-box;
}
.dpa-submit-btn {
	padding: 10px 18px;
	cursor: pointer;
}
.dpa-help {
	font-size: 0.85em;
	color: #666;
}
.dpa-download-btn {
	display: inline-block;
	padding: 10px 18px;
	text-decoration: none;
	border-radius: 4px;
	cursor: pointer;
}

/* Login popup overlay */
.dpa-overlay {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: none;
	align-items: center;
	justify-content: center;
}
.dpa-overlay.is-open {
	display: flex;
}
.dpa-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.6);
}
.dpa-overlay__panel {
	position: relative;
	background: #fff;
	max-width: 420px;
	width: calc(100% - 32px);
	max-height: 90vh;
	overflow-y: auto;
	border-radius: 6px;
	padding: 40px 32px 32px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.dpa-overlay__close {
	position: absolute;
	top: 14px;
	right: 14px;
	background: none;
	border: none;
	padding: 6px;
	line-height: 0;
	cursor: pointer;
	color: #333;
}
.dpa-overlay__close:hover {
	color: #000;
}
.dpa-overlay__title {
	margin: 0 0 6px;
	font-size: 1.3em;
}
.dpa-overlay__subtitle {
	margin: 0 0 20px;
	color: #666;
	font-size: 0.95em;
}
.dpa-overlay__register {
	margin-top: 18px;
	font-size: 0.9em;
	text-align: center;
	color: #666;
}
.dpa-ajax-error {
	background: #fbeaea;
	color: #b32d2e;
	border: 1px solid #f0c3c3;
	border-radius: 4px;
	padding: 10px 12px;
	margin-bottom: 16px;
	font-size: 0.9em;
}
body.dpa-overlay-open {
	overflow: hidden;
}

/* Fast click loader for class-based download triggers */
.dpa-quick-loader{position:fixed;inset:0;z-index:99999;background:rgba(255,255,255,.82);display:none;align-items:center;justify-content:center;flex-direction:column;gap:14px;pointer-events:none}.dpa-quick-loader.is-active{display:flex}.dpa-quick-loader span{width:42px;height:42px;border:3px solid rgba(0,0,0,.15);border-top-color:#000;border-radius:50%;animation:dpa-spin .7s linear infinite}.dpa-quick-loader__text{font-size:14px;line-height:1.4;color:#111;letter-spacing:.02em}@keyframes dpa-spin{to{transform:rotate(360deg)}}
