/**
 * SLDC Form Verify — Frontend Styles
 */

/* Disabled submit button */
.sldc-fv-submit-disabled {
	opacity: 0.5 !important;
	cursor: not-allowed !important;
	pointer-events: none;
}

/* ---- Modal overlay ---- */
.sldc-fv-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0);
	transition: background 0.25s ease;
	padding: 20px;
}

.sldc-fv-overlay--visible {
	background: rgba(0, 0, 0, 0.45);
}

/* ---- Popup card ---- */
.sldc-fv-popup {
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
	max-width: 400px;
	width: 100%;
	padding: 40px 32px 32px;
	text-align: center;
	transform: translateY(30px) scale(0.95);
	opacity: 0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.sldc-fv-overlay--visible .sldc-fv-popup {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.sldc-fv-popup-icon {
	font-size: 48px;
	line-height: 1;
	margin-bottom: 16px;
}

.sldc-fv-popup-title {
	margin: 0 0 12px;
	font-size: 20px;
	font-weight: 700;
	color: #1a1a1a;
}

.sldc-fv-popup-msg {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.7;
	color: #444;
}

.sldc-fv-popup-note {
	display: block;
	margin: 0 0 24px;
	font-size: 13px;
	color: #999;
}

.sldc-fv-popup-btn {
	display: inline-block;
	padding: 10px 40px;
	border: none;
	border-radius: 8px;
	background: #4a90d9;
	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s;
}

.sldc-fv-popup-btn:hover {
	background: #3a7bc8;
}
