.rh-commercial {
	background-color: #121B2E;
	padding-block: 28px 64px;
}

.rh-commercial__container {
	width: 100%;
}

.rh-commercial__content {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
	align-items: center;
	gap: 28px;
	background: #ffffff;
	border-radius: 36px;
	padding: 32px 42px;
	height: 630px;
	overflow: hidden;
}

.rh-commercial__left {
	min-height: 100%;
	padding-right: 60px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #121b2e;
}

.rh-commercial__right {
	display: flex;
	justify-content: flex-end;
}

.rh-commercial__title {
	margin: 0 0 12px;
	font-size: 40px;
	font-weight: 700;
}

.rh-commercial__text {
	margin: 0 0 16px;
	font-size: 16px;
	line-height: 1.35;
	max-width: 560px;
	color: rgba(18, 27, 46, 0.85);
}

.rh-commercial__list {
	margin: 0 0 24px;
	padding-left: 22px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
}

.rh-commercial__form {
	display: grid;
	gap: 12px;
	max-width: 620px;
}

.rh-commercial__input {
	height: 52px;
	width: 100%;
	box-sizing: border-box;
	border-radius: 999px;
	border: 2px solid #121b2e;
	background: #fff;
	padding: 0 22px;
	font-size: 16px;
	color: #121b2e;
}

.rh-commercial__input::placeholder {
	color: rgba(18, 27, 46, 0.72);
}

.rh-commercial__input:focus {
	outline: none;
	border-color: #121b2e;
}

.rh-commercial__input:user-invalid,
.rh-commercial__input:invalid:not(:placeholder-shown) {
	border-color: #d63940;
}

.rh-commercial__button {
	height: 56px;
	border: 0;
	border-radius: 999px;
	background: #d63940;
	color: #fff;
	font-size: 18px;
	font-weight: 700;
	cursor: pointer;
	transition: background-color 0.2s ease;
}

.rh-commercial__button:hover,
.rh-commercial__button:focus {
	background: #bf2f36;
}

.rh-commercial__button:disabled {
	opacity: 0.7;
	cursor: not-allowed;
}

.rh-commercial__status {
	margin: 2px 0 0;
	min-height: 20px;
	font-size: 14px;
	font-weight: 600;
}

.rh-commercial__status.is-success {
	color: #1b7f2a;
}

.rh-commercial__status.is-error {
	color: #c22d34;
}

.rh-commercial__image {
	display: block;
	width: min(500px, 92%);
	max-height: 560px;
	height: auto;
	margin-left: auto;
	object-fit: contain;
}

@media (max-width: 900px) {
	.rh-commercial__content {
		grid-template-columns: 1fr;
		height: auto;
		padding: 24px 16px;
		gap: 18px;
	}

	.rh-commercial__right {
		justify-content: center;
		width: 100%;
	}

	.rh-commercial__title {
		font-size: 34px;
	}

	.rh-commercial__text {
		font-size: 16px;
	}

	.rh-commercial__list {
		font-size: 16px;
	}

	.rh-commercial__input {
		font-size: 16px;
	}

	.rh-commercial__button {
		font-size: 16px;
	}

	.rh-commercial__left {
		padding-right: 0;
	}

	.rh-commercial__image {
		width: 100%;
		max-width: 100%;
		margin-left: 0;
	}
}
