.hotel-form-wrap {
	max-width: 720px;
	margin: 0 auto;
}

.hotel-form {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
	font-family: var(--wp--preset--font-family--body, "IBM Plex Sans", sans-serif);
}

.hotel-form-row {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hotel-form-row--half {
	flex-direction: row;
	gap: 1.25rem;
}

.hotel-form-row--half > div {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.hotel-form label {
	font-weight: 600;
	color: #1A2332;
	font-size: 0.95rem;
	letter-spacing: 0.02em;
}

.hotel-form .req {
	color: #ff8103;
}

.hotel-form input,
.hotel-form select,
.hotel-form textarea {
	width: 100%;
	padding: 0.85rem 1rem;
	border: 1px solid #D1D1D1;
	border-radius: 4px;
	background: #ffffff;
	font-family: inherit;
	font-size: 1rem;
	color: #111111;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.hotel-form input:focus,
.hotel-form select:focus,
.hotel-form textarea:focus {
	outline: none;
	border-color: #ff8103;
	box-shadow: 0 0 0 3px rgba(255, 129, 3, 0.15);
}

.hotel-form textarea {
	resize: vertical;
}

.hotel-form-button {
	align-self: flex-start;
	background: #ff8103;
	color: #ffffff;
	border: none;
	padding: 0.9rem 2.2rem;
	font-size: 1rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	border-radius: 4px;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.1s ease;
}

.hotel-form-button:hover {
	background: #e5740a;
}

.hotel-form-button:active {
	transform: translateY(1px);
}

.hotel-form-success {
	background: #F9F7F5;
	border-left: 4px solid #C5A880;
	padding: 1rem 1.25rem;
	color: #1A2332;
	font-weight: 500;
	border-radius: 2px;
}

@media (max-width: 600px) {
	.hotel-form-row--half {
		flex-direction: column;
	}
}
