.top-steamer-booking {
	margin: 24px 0;
	max-width: 920px;
}

.top-steamer-booking,
.top-steamer-booking * {
	box-sizing: border-box;
}

.top-steamer-booking__form {
	background: #fff;
	border: 1px solid #d7dee8;
	border-radius: 8px;
	padding: 24px;
}

.top-steamer-booking__section + .top-steamer-booking__section {
	border-top: 1px solid #e6ebf1;
	margin-top: 22px;
	padding-top: 22px;
}

.top-steamer-booking h2 {
	font-size: clamp(1.35rem, 2vw, 1.8rem);
	margin: 0 0 18px;
}

.top-steamer-booking__grid {
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.top-steamer-booking label {
	display: flex;
	flex-direction: column;
	gap: 7px;
}

.top-steamer-booking label span {
	color: #1f2937;
	font-size: 0.95rem;
	font-weight: 700;
}

.top-steamer-booking input,
.top-steamer-booking select,
.top-steamer-booking textarea {
	background: #fff;
	border: 1px solid #b8c2cc;
	border-radius: 6px;
	color: #111827;
	font: inherit;
	min-height: 44px;
	padding: 10px 12px;
	width: 100%;
}

.top-steamer-booking textarea {
	min-height: 96px;
	resize: vertical;
}

.top-steamer-booking__full {
	grid-column: 1 / -1;
}

.top-steamer-booking__button {
	background: var(--top-steamer-button-color, #0f766e);
	border: 0;
	border-radius: 6px;
	color: #fff;
	cursor: pointer;
	font: inherit;
	font-weight: 800;
	margin-top: 22px;
	min-height: 46px;
	padding: 12px 18px;
}

.top-steamer-booking__button:hover,
.top-steamer-booking__button:focus {
	color: #fff;
	filter: brightness(0.92);
}

.top-steamer-booking__notice {
	border-radius: 6px;
	font-weight: 700;
	margin-bottom: 16px;
	padding: 12px 14px;
}

.top-steamer-booking__notice--success {
	background: #dcfce7;
	color: #14532d;
}

.top-steamer-booking__notice--error {
	background: #fee2e2;
	color: #7f1d1d;
}

@media (max-width: 700px) {
	.top-steamer-booking__form {
		padding: 18px;
	}

	.top-steamer-booking__grid {
		grid-template-columns: 1fr;
	}

	.top-steamer-booking__button {
		width: 100%;
	}
}
