/**
 * Minimal Bootstrap overrides for the volunteer registration form.
 * Bootstrap 5 handles most of the styling.
 */

/* Limit container width for better readability */
.container {
	max-width: 900px;
}

/* Custom primary color override (optional - adjust to match your brand) */
:root {
	--bs-primary: #0073aa;
	--bs-primary-rgb: 0, 115, 170;
}

/* Ensure proper spacing for form on smaller screens */
@media (max-width: 768px) {
	.container {
		padding-left: 15px;
		padding-right: 15px;
	}
}