/**
 * Masters Radio brand styling for the Song Forge submission form.
 *
 * The submit button carries no class of its own, so it was inheriting the
 * theme's default pink gradient: off-brand on the most prominent action in the
 * member flow, and directly beneath three legal confirmations where a serious
 * tone matters.
 *
 * Scoped to .mr-forge-submit so no other button on the site is touched.
 *
 * The older Song Forge templates use .sf-btn--primary, driven by --sf-primary
 * in assets/css/songforge-public.css. That variable was moved to #8B0000 on
 * 2026-08-02, so the whole Song Forge UI and this button now agree.
 *
 * Brand: crimson #8B0000, charcoal, white.
 */

.mr-forge-submit button[type="submit"] {
	background: #8B0000;
	background-image: none;
	border: 1px solid #8B0000;
	color: #fff;
	font-weight: 700;
	letter-spacing: .02em;
	padding: 12px 26px;
	border-radius: 6px;
	cursor: pointer;
	text-shadow: none;
	box-shadow: none;
	transition: background .15s ease, border-color .15s ease;
}

.mr-forge-submit button[type="submit"]:hover:not(:disabled) {
	background: #6d0000;
	border-color: #6d0000;
}

/* The theme's pink gradient carried its own focus affordance; replace it. */
.mr-forge-submit button[type="submit"]:focus-visible {
	outline: 2px solid #ffb4b4;
	outline-offset: 2px;
}

.mr-forge-submit button[type="submit"]:disabled {
	background: #5a3535;
	border-color: #5a3535;
	cursor: not-allowed;
	opacity: .7;
}
