.colvert-parking-web__form {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 1rem;
	padding: 1.5rem;
	box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.colvert-parking-web__field {
	margin-bottom: 1rem;
}

.colvert-parking-web__field label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #334155;
	margin-bottom: 0.35rem;
}

.colvert-parking-web__optional {
	font-weight: 400;
	color: #94a3b8;
}

.colvert-parking-web__field input {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #cbd5e1;
	border-radius: 0.5rem;
	padding: 0.75rem 0.875rem;
	font-size: 1rem;
	background: #fff;
	color: #0f172a;
}

.colvert-parking-web__field input:focus {
	outline: none;
	border-color: #2563eb;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.colvert-parking-web__field input.uppercase {
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.colvert-parking-web__submit {
	width: 100%;
	margin-top: 0.5rem;
	padding: 0.9rem 1rem;
	border: none;
	border-radius: 0.5rem;
	background: #2563eb;
	color: #fff;
	font-size: 1rem;
	font-weight: 700;
	cursor: pointer;
	transition: background 0.15s ease;
}

.colvert-parking-web__submit:hover:not(:disabled) {
	background: #1d4ed8;
}

.colvert-parking-web__submit:disabled {
	opacity: 0.65;
	cursor: wait;
}

.colvert-parking-web__status {
	min-height: 1.25rem;
	margin-top: 0.75rem;
	font-size: 0.875rem;
	color: #475569;
	text-align: center;
}

.colvert-parking-web__status.is-error {
	color: #dc2626;
}

.colvert-parking-web__alert {
	background: #fef2f2;
	border: 1px solid #fecaca;
	color: #991b1b;
	border-radius: 0.75rem;
	padding: 1rem 1.25rem;
	text-align: center;
	font-size: 0.9375rem;
}

.colvert-parking-web-anchor {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

body.colvert-parking-modal-open {
	overflow: hidden;
}

.colvert-parking-modal {
	position: fixed;
	inset: 0;
	z-index: 10050;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
}

.colvert-parking-modal[hidden] {
	display: none !important;
}

.colvert-parking-modal__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 23, 42, 0.55);
}

.colvert-parking-modal__panel {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 28rem;
	max-height: calc(100vh - 2rem);
	overflow-y: auto;
	background: #fff;
	border-radius: 1rem;
	padding: 1.5rem 1.25rem 1.25rem;
	box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.35);
}

.colvert-parking-modal__close {
	position: absolute;
	top: 0.65rem;
	right: 0.65rem;
	width: 2.25rem;
	height: 2.25rem;
	border: none;
	border-radius: 999px;
	background: #f1f5f9;
	color: #334155;
	font-size: 1.5rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.colvert-parking-modal__close:hover {
	background: #e2e8f0;
}

.colvert-parking-modal.is-open {
	animation: colvert-parking-modal-in 0.2s ease;
}

@keyframes colvert-parking-modal-in {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
