/**
* Interest form styles
*/
.interest-form {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.interest-form__row {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}

.interest-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.interest-form__label {
	font-size: 0.875rem;
	font-weight: 600;
	color: #374151;
	text-transform: uppercase;
	letter-spacing: 0.05em;
}

.interest-form__field input,
.interest-form__field select {
	padding: 0.5rem;
	border: 1px solid #d1d5db;
	border-radius: 4px;
	font-size: 1rem;
	transition: border-color 150ms ease;
}

.interest-form__field input:focus,
.interest-form__field select:focus {
	outline: none;
	border-color: #f45f00;
}

.interest-form__actions,
.interest-form__actions p{
	margin-top: 1rem;
}

@media screen and (min-width: 768px) {
	.interest-form__row {
		flex-direction: row;
	}

	.interest-form__row .interest-form__field {
		flex: 1;
	}
}
