.mwl-capture-lock {
	overflow: hidden;
}

.mwl-capture {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: grid;
	place-items: center;
	padding: 20px;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.mwl-capture__backdrop {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, .52);
	backdrop-filter: blur(3px);
}

.mwl-capture__panel {
	position: relative;
	width: min(100%, 390px);
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 24px 80px rgba(15, 23, 42, .28);
	padding: 22px;
	color: #0f172a;
}

.mwl-capture__brand {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	padding: 0 10px;
	border-radius: 999px;
	background: #e7f6ee;
	color: #0f8a4c;
	font-weight: 800;
	font-size: .86rem;
	margin-bottom: 12px;
}

.mwl-capture__title {
	margin: 0 0 18px;
	font-size: 1.3rem;
	line-height: 1.25;
	font-weight: 850;
	letter-spacing: 0;
}

.mwl-capture__actions,
.mwl-capture__email,
.mwl-capture__phone {
	display: grid;
	gap: 10px;
}

.mwl-capture__button {
	width: 100%;
	min-height: 48px;
	border: 1px solid #d7dee8;
	border-radius: 8px;
	background: #fff;
	color: #0f172a;
	font-weight: 800;
	font-size: .98rem;
	cursor: pointer;
}

.mwl-capture__button:focus,
.mwl-capture__button:hover {
	border-color: #0f8a4c;
	box-shadow: 0 0 0 3px rgba(15, 138, 76, .12);
	outline: none;
}

.mwl-capture__button--primary {
	background: #0f8a4c;
	border-color: #0f8a4c;
	color: #fff;
}

.mwl-capture__button--google {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.mwl-capture__button--google span {
	display: grid;
	place-items: center;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	background: #fff;
	color: #2563eb;
	font-weight: 900;
	box-shadow: inset 0 0 0 1px #d7dee8;
}

.mwl-capture__email {
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #edf1f6;
}

.mwl-capture__phone-row {
	display: grid;
	grid-template-columns: minmax(118px, .9fr) minmax(0, 1.4fr);
	gap: 10px;
}

.mwl-capture label {
	display: grid;
	gap: 6px;
	font-weight: 750;
	font-size: .88rem;
	color: #334155;
}

.mwl-capture input[type="email"],
.mwl-capture input[type="tel"],
.mwl-capture select {
	width: 100%;
	min-height: 46px;
	border: 1px solid #cbd5e1;
	border-radius: 8px;
	padding: 10px 12px;
	background: #fff;
	color: #0f172a;
	font: inherit;
}

.mwl-capture input:focus,
.mwl-capture select:focus {
	border-color: #0f8a4c;
	box-shadow: 0 0 0 3px rgba(15, 138, 76, .12);
	outline: none;
}

.mwl-capture__consent {
	display: flex !important;
	grid-template-columns: none !important;
	align-items: flex-start;
	gap: 9px !important;
	margin: 14px 0 10px;
	font-size: .82rem !important;
	line-height: 1.35;
	font-weight: 600 !important;
	color: #475569 !important;
}

.mwl-capture__consent input {
	flex: 0 0 auto;
	width: 17px;
	height: 17px;
	margin-top: 1px;
}

.mwl-capture__consent a {
	color: #0f8a4c;
	text-decoration: underline;
	text-underline-offset: 2px;
}

.mwl-capture__later {
	display: block;
	width: 100%;
	margin-top: 12px;
	border: 0;
	background: transparent;
	color: #64748b;
	font-weight: 800;
	cursor: pointer;
	min-height: 38px;
}

.mwl-capture__later:focus,
.mwl-capture__later:hover {
	color: #0f172a;
	outline: none;
}

.mwl-capture__error {
	margin: 12px 0 0;
	padding: 10px 12px;
	border-radius: 8px;
	background: #fff1f2;
	color: #be123c;
	font-weight: 700;
	font-size: .88rem;
}

.mwl-capture__success {
	display: grid;
	gap: 6px;
	margin: 8px 0 16px;
	padding: 16px;
	border-radius: 8px;
	background: #f0fdf4;
	color: #166534;
}

.mwl-capture__success strong {
	font-size: 1.15rem;
}

@media (max-width: 430px) {
	.mwl-capture {
		align-items: end;
		padding: 0;
	}

	.mwl-capture__panel {
		width: 100%;
		border-radius: 8px 8px 0 0;
		padding: 20px 16px max(20px, env(safe-area-inset-bottom));
	}

	.mwl-capture__phone-row {
		grid-template-columns: 1fr;
	}

	.mwl-capture__title {
		font-size: 1.18rem;
	}
}
