.smartstart-support-form-wrap {
	max-width: 860px;
	margin: 0 auto;
	padding: 1.5rem 0 3rem;
}

.smartstart-support-form__section {
	margin-bottom: 2rem;
	padding: 1.5rem;
	border: 1px solid rgba(0, 0, 0, 0.08);
	border-radius: 12px;
	background: #fff;
}

.smartstart-support-form__section h2 {
	margin: 0 0 1rem;
	font-size: 1.25rem;
}

.smartstart-support-form__grid {
	display: grid;
	gap: 1rem;
}

.smartstart-support-form__grid--2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.smartstart-support-form label {
	display: block;
	font-weight: 600;
}

.smartstart-support-form input[type="text"],
.smartstart-support-form input[type="email"],
.smartstart-support-form input[type="tel"],
.smartstart-support-form input[type="date"],
.smartstart-support-form select,
.smartstart-support-form textarea {
	width: 100%;
	margin-top: 0.5rem;
	padding: 0.75rem 0.9rem;
	border: 1px solid #d7d7d7;
	border-radius: 8px;
	font: inherit;
	box-sizing: border-box;
}

.smartstart-support-form textarea {
	resize: vertical;
	min-height: 160px;
}

.smartstart-support-form .required {
	color: #c0392b;
}

.smartstart-support-form__hint {
	margin: 0.75rem 0 0;
	color: #666;
	font-size: 0.9rem;
}

.smartstart-support-form__submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	position: relative;
	min-width: 200px;
	padding: 0.6rem 1.35rem;
	border: 0;
	border-radius: 999px;
	background: #111;
	color: #fff;
	font: inherit;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	cursor: pointer;
}

.smartstart-support-form__submit:hover {
	opacity: 0.9;
}

.smartstart-support-form__submit:disabled {
	opacity: 0.75;
	cursor: wait;
}

.smartstart-support-form__notice-slot {
	min-height: 0;
	margin-top: 0.85rem;
	max-width: 36rem;
}

.smartstart-support-form__notice-slot:empty {
	display: none;
	margin-top: 0;
}

.smartstart-support-form__notice {
	margin: 0;
	padding: 0.75rem 0.9rem;
	border-radius: 8px;
	font-size: 0.9rem;
	line-height: 1.45;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}

.smartstart-support-form__notice.is-visible {
	opacity: 1;
	transform: translateY(0);
}

.smartstart-support-form__notice.is-hiding {
	opacity: 0;
	transform: translateY(-4px);
}

.smartstart-support-form__notice--success {
	background: #eaf8ef;
	color: #1f6b3a;
}

.smartstart-support-form__notice--error {
	background: #fdecec;
	color: #9b1c1c;
}

.smartstart-support-form__submit-spinner {
	display: none;
	width: 1rem;
	height: 1rem;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-top-color: #fff;
	border-radius: 50%;
	animation: smartstart-support-spin 0.7s linear infinite;
}

.smartstart-support-form__submit.is-loading .smartstart-support-form__submit-spinner {
	display: inline-block;
}

@keyframes smartstart-support-spin {
	to {
		transform: rotate(360deg);
	}
}

@media (max-width: 767px) {
	.smartstart-support-form__grid--2 {
		grid-template-columns: 1fr;
	}
}
