.wp-block-button.canada a {
	display: inline-flex;
	align-items: center;
	gap: .5rem;
}
form.custom-form label {
	font-weight: bold;
}
form.custom-form span:is(.optional, .required) {
	font-weight: normal;
	font-size: 1rem;
	transform: skewX(-2deg);
	display: inline-block;
	color: #888;
}
form.custom-form span.required {
	color: #b11226;
}
form.custom-form :is(input[type="text"], input[type="email"], input[type="tel"], input[type="url"], input[type="password"], input[type="number"], input[type="date"], input[type="time"], input[type="datetime-local"], input[type="month"], input[type="week"], input[type="search"], input[type="color"], input[type="file"], textarea, select) {
	margin:.5rem 0 1rem 0;
	resize:none;
}
form.custom-form .buttons {
	display: flex;
	flex-direction: column-reverse;
	gap: 1rem;
}
form.custom-form button {
	cursor: pointer;
}
form.custom-form button[disabled] {
	opacity: .5;
	cursor: not-allowed;
}
form.custom-form button[type="reset"] {
	background: transparent;
	color: inherit;
}
form.custom-form.loading {
	position: relative;
}
form.custom-form.loading::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .5);
	z-index: 1;
	cursor: wait;
}
@media (min-width: 40em) {
	form.custom-form .buttons {
		flex-direction: row;
		justify-content: space-between;
		gap: 0;
	}
}

input.hs-button {
	color: var(--on-overlay);
	background-color: var(--overlay);
	/* Label 1/Small/: Bold */
	font-family: var(--label-1-secondary-small-bold-family);
	font-size: var(--label-1-secondary-small-bold-size-rem);
	font-style: var(--label-1-secondary-small-bold-style);
	font-weight: var(--label-1-secondary-small-bold-weight);
	line-height: var(--label-1-secondary-small-bold-line-height-rem);
	border-radius: 6.25rem;
	border-width: 1px;
	border-style: solid;
	border-color: var(--overlay);
	padding: 0.75rem 1rem;

	& strong,
	& b {
		font-weight: var(--label-1-secondary-small-bold-weight);
	}
}