.sbipl-cm {
	position: fixed;
	inset: 0;
	z-index: 100000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	visibility: hidden;
	opacity: 0;
	transition: opacity 0.2s ease, visibility 0.2s;
}
.sbipl-cm.is-open {
	visibility: visible;
	opacity: 1;
}
.sbipl-cm-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	cursor: pointer;
}
.sbipl-cm-dialog {
	position: relative;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
	max-width: 480px;
	width: 100%;
	max-height: 90vh;
	overflow-y: auto;
	padding: 1.75rem 1.75rem 1.5rem;
	z-index: 1;
}
.sbipl-cm-close {
	position: absolute;
	top: 12px;
	right: 14px;
	border: none;
	background: none;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	color: #6b7280;
	padding: 4px;
}
.sbipl-cm-close:hover {
	color: #111;
}
.sbipl-cm-dialog h2 {
	margin: 0 0 0.5rem 0;
	font-size: 1.5rem;
	font-weight: 800;
	color: #111;
}
.sbipl-cm-intro {
	margin: 0 0 1.25rem 0;
	color: #4b5563;
	font-size: 0.95rem;
}
.sbipl-cm-field {
	margin-bottom: 1rem;
}
.sbipl-cm-field label {
	display: block;
	font-weight: 600;
	font-size: 0.875rem;
	color: #374151;
	margin-bottom: 0.35rem;
}
.sbipl-cm-field input,
.sbipl-cm-field textarea {
	width: 100%;
	box-sizing: border-box;
	padding: 0.6rem 0.75rem;
	border: 1px solid #d1d5db;
	border-radius: 8px;
	font-size: 1rem;
}
.sbipl-cm-field input:focus,
.sbipl-cm-field textarea:focus {
	outline: none;
	border-color: #d20000;
	box-shadow: 0 0 0 2px rgba(210, 0, 0, 0.15);
}
.sbipl-cm-verify label {
	color: #111;
}
.sbipl-cm-msg {
	min-height: 1.25rem;
	font-size: 0.9rem;
	margin: 0.5rem 0 0.75rem 0;
}
.sbipl-cm-msg.is-error {
	color: #b91c1c;
}
.sbipl-cm-msg.is-success {
	color: #15803d;
}
.sbipl-cm-submit {
	width: 100%;
	padding: 0.75rem 1rem;
	background: #d20000;
	color: #fff;
	border: none;
	border-radius: 8px;
	font-weight: 700;
	font-size: 0.95rem;
	cursor: pointer;
}
.sbipl-cm-submit:hover {
	background: #b30000;
}
.sbipl-cm-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
