.spr-overlay {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.55);
	padding: 16px;
	box-sizing: border-box;
}
.spr-overlay[hidden] {
	display: none;
}
.spr-modal {
	position: relative;
	background: #fff;
	color: #1a1a1a;
	border-radius: 8px;
	box-shadow: 0 8px 40px rgba(0,0,0,.25);
	width: 100%;
	max-width: 520px;
	padding: 36px 32px 28px;
	box-sizing: border-box;
	max-height: 90vh;
	overflow-y: auto;
}
.spr-overlay .spr-close {
	position: absolute !important;
	top: 10px !important;
	right: 12px !important;
	left: auto !important;
	background: none !important;
	border: none !important;
	box-shadow: none !important;
	font-size: 22px;
	line-height: 1;
	color: #888;
	cursor: pointer;
	padding: 4px 8px;
	border-radius: 4px;
	z-index: 1;
}
.spr-overlay .spr-close:hover { color: #111; background: #f0f0f0 !important; }
.spr-title { margin: 0 0 20px; font-size: 18px; font-weight: 700; color: #111; }
.spr-login-msg { margin: 0; font-size: 15px; color: #444; text-align: center; padding: 12px 0; }
.spr-field { margin-bottom: 18px; }
.spr-field[hidden] { display: none; }
.spr-label { display: block; margin-bottom: 6px; font-size: 13px; font-weight: 600; color: #333; }
.spr-required { color: #c0392b; }
.spr-select,
.spr-input {
	width: 100%;
	padding: 9px 12px;
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 14px;
	color: #1a1a1a;
	background: #fafafa;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}
.spr-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 12px center;
	padding-right: 32px;
}
.spr-select:focus,
.spr-input:focus {
	outline: none;
	border-color: #0073aa;
	background: #fff;
	box-shadow: 0 0 0 3px rgba(0,115,170,.12);
}
.spr-conditional-msg {
	margin: 0 0 18px;
	padding: 12px 16px;
	background: #f0f7ff;
	border-left: 3px solid #0073aa;
	border-radius: 0 5px 5px 0;
	font-size: 13px;
	line-height: 1.55;
	color: #2c3e50;
}
.spr-conditional-msg[hidden] { display: none; }
.spr-actions { margin-top: 22px; }
.spr-submit {
	display: block;
	width: 100%;
	padding: 11px 20px;
	background: #0073aa;
	color: #fff;
	border: none;
	border-radius: 5px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
}
.spr-submit:hover { background: #005a87; }
.spr-submit:disabled { background: #a0c4da; cursor: not-allowed; }
.spr-success {
	margin: 12px 0 0;
	padding: 14px 18px;
	background: #d4edda;
	border: 1px solid #28a745;
	border-radius: 5px;
	font-size: 15px;
	color: #15