.selection-help-section {
	display: flex;
	flex-flow: column;
	padding: 20px;
	margin: 32px 16px 0;
	border-radius: 28px;
	background-color: $color-green;
	background-image: url('/images/selection-help/bg-mobile.png');
	background-size: 100% 100%;
	background-repeat: no-repeat;

	@include retina {
		background-image: url('/images/selection-help/bg-mobile@2x.png');
	}

	@include desktop {
		align-self: center;
		margin-top: 80px;
		padding: 40px;
		width: calc(100% - 32px);
		max-width: $width-desktop;
		border-radius: 32px;
		background-position: center right;
		background-size: auto 100%;
		background-image: url('/images/selection-help/bg-desktop.png');
		box-sizing: border-box;

		@include retina {
			background-image: url('/images/selection-help/bg-desktop@2x.png');
		}
	}
}

.selection-help-section__title {
	font-size: 24px;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: $color-white;

	@include desktop {
		font-size: 38px;
	}
}

.selection-help-section__desc {
	margin-top: 10px;
	font-size: 14px;
	line-height: 16px;
	color: $color-white;

	@include desktop {
		margin-top: 12px;
		font-size: 16px;
		line-height: 18px;
	}
}

.selection-help-section__form {
	display: flex;
	flex-flow: column;
	gap: 16px;
	margin-top: 16px;

	@include desktop {
		gap: 20px;
		margin-top: 20px;
	}
}

.selection-help-section__form__group {
	display: flex;
	flex-flow: column;
	gap: 10px;

	@include desktop {
		flex-flow: row nowrap;
		width: 100%;
		max-width: 633px;

		& > * {
			flex: 1;
		}
	}
}

.selection-help-section__form__submit-btn {
	height: 54px;
	padding: 0px 18px;
	border-radius: 14px;
	background-color: #f57c00;
	font-weight: 500;
	font-size: 14px;
	color: $color-white;
	box-sizing: border-box;

	@include desktop {
		height: 64px;
		max-width: 133px;
		border-radius: 16px;
		font-size: 16px;
	}
}

.selection-help-section__form__checkbox {
	color: $color-white;

	input:checked ~ .input-checkbox__box {
		background-color: $color-white;
		background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 14L8.5 17.5L19 6.5' stroke='green' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	}

	.input-checkbox__text {
		a {
			text-decoration: underline;
		}
	}
}
