body{
	background-image: url('fdo-gray.jpg');
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;

	padding: 20px 0px;

	color: #414c58;
	font-family: 'Montserrat', sans-serif;
}
.container {
	width: clamp( 0px, 800px, 100% );
	margin: 0 auto;
	padding: 20px;
	background-color: white;

	border-radius: 5px;

	border: solid 1px #c2c6d175;
	box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.1);
}

.banner {
/*	background-color: #f0f0f0;*/
	min-height: 150px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	font-size: 24px;
	color: #333;
	border-radius: 5px;
}
.banner img{
	max-width: 100%;
}

.event-name {
    text-align: center;
    width: 100%;
    background-image: url(https://www.toptal.com/designers/subtlepatterns/uploads/memphis-mini.png);
    margin-bottom: 20px;
    background: #631314;
	background: linear-gradient(253deg, #540DDB 11%, #f2295b 100%);
    color: white;
    font-weight: bold;
    border-radius: 5px;
    padding: 14px 22px;
    text-shadow: 0px 2px 3px rgba(0, 0, 0, 0.3);
	background-blend-mode: color-burn;
	box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.input-group {
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}

.radio-group {
	margin-bottom: 15px;
}

.radio-group label {
	margin-right: 20px;
}

.info-text {
	margin-bottom: 20px;
}

.card {
	background-color: #f8f8f8;
	border: 1px solid #ccc;
	padding: 15px;
}

label:has(+ input:required):after, label:has(+ select:required):after {
	content: ' *';
	color: red;
}

.form label{
	font-size: 0.85em;
	color: #545466;
}