.smc-form-card {
	background-color: #FFFFFF;
	border-radius: 30px;
	padding: 40px;
	max-width: 700px;
	margin: 0 auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
	font-family: inherit;
}

.smc-form-card h3 {
	margin-top: 0;
	margin-bottom: 20px;
	color: #1a1a2e; /* swap to your navy */
}

.smc-form-card h4 {
	margin-top: 24px;
	margin-bottom: 12px;
	color: #1a1a2e;
}

.smc-field {
	margin-bottom: 18px;
}

.smc-field label {
	display: block;
	font-weight: 500;
	margin-bottom: 6px;
	font-size: 14px;
	color: #333;
}

.smc-field input[type="text"],
.smc-field input[type="email"],
.smc-field input[type="tel"],
.smc-field input[type="date"],
.smc-field input[type="number"],
.smc-field select {
	width: 100%;
	padding: 12px 20px;
	border: 1px solid #ddd;
	border-radius: 50px;
	font-size: 15px;
	box-sizing: border-box;
}

.smc-field input:focus,
.smc-field select:focus {
	outline: none;
	border-color: #BA7517; /* gold accent — adjust to your exact palette value */
}

.smc-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
}

.smc-grid .smc-full {
	grid-column: 1 / -1;
}

@media (max-width: 600px) {
	.smc-grid {
		grid-template-columns: 1fr;
	}
	.smc-form-card {
		padding: 24px;
		border-radius: 20px;
	}
}

.smc-radio-group label {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	margin-right: 24px;
	font-weight: 400;
}

.smc-checkbox-label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 400 !important;
	cursor: pointer;
}

.smc-zelle-box {
	background: #FAF3E8;
	border-radius: 20px;
	padding: 20px;
	margin-top: 20px;
	text-align: center;
}

.smc-zelle-title {
	font-weight: 600;
	margin: 0 0 8px;
	color: #1a1a2e;
}

.smc-zelle-text {
	font-size: 13px;
	color: #555;
	margin: 0 0 14px;
	line-height: 1.5;
}

.smc-zelle-qr {
	max-width: 180px;
	width: 100%;
	height: auto;
	border-radius: 12px;
	border: 1px solid #eee;
}

.smc-consent label {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 13px;
	line-height: 1.5;
	font-weight: 400;
}

.smc-consent input[type="checkbox"] {
	margin-top: 3px;
}

.smc-summary {
	background: #f7f7f7;
	border-radius: 16px;
	padding: 16px 20px;
	margin: 16px 0;
}

.smc-summary p {
	margin: 4px 0;
}

.smc-message {
	background: #fdecea;
	color: #842029;
	border-radius: 12px;
	padding: 10px 16px;
	margin-bottom: 16px;
	font-size: 14px;
}

.smc-submit-btn,
.smc-nav button {
	border-radius: 50px;
	padding: 14px 40px;
	font-size: 15px;
	font-weight: 600;
	border: none;
	cursor: pointer;
	background-color: #7a1f2b; /* deep red accent — adjust to your exact palette value */
	color: #fff;
	transition: opacity 0.2s ease;
}

.smc-submit-btn:hover,
.smc-nav button:hover {
	opacity: 0.9;
}

.smc-submit-btn:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.smc-nav {
	display: flex;
	justify-content: space-between;
	margin-top: 24px;
}

.smc-btn-prev {
	background-color: #e5e5e5 !important;
	color: #333 !important;
}

.smc-note {
	font-size: 12px;
	color: #888;
	font-style: italic;
}

.smc-hidden {
	display: none !important;
}
