/* SD Warteliste – Frontend Styles */

.sd-wl-box {
	margin: 28px 0;
	padding: 0;
	background: transparent;
	border: none;
	border-radius: 0;
}

.sd-wl-headline {
	margin: 0 0 8px;
	font-size: 1.3em;
}

.sd-wl-desc {
	color: #000;
	margin-bottom: 20px;
	font-size: .95em;
}

.sd-wl-field {
	margin-bottom: 14px;
}

.sd-wl-field label {
	display: block;
	margin-bottom: 5px;
	font-weight: 600;
	font-size: .9em;
}

.sd-wl-req {
	color: #d63638;
}

.sd-wl-field input[type="text"],
.sd-wl-field input[type="email"],
.sd-wl-field input[type="tel"] {
	display: block;
	width: 100%;
	padding: 10px 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1em;
	background: #fff;
	transition: border-color .2s, box-shadow .2s;
	box-sizing: border-box;
}

.sd-wl-field input:focus {
	border-color: #0073aa;
	outline: none;
	box-shadow: 0 0 0 2px rgba(0,115,170,.15);
}

.sd-wl-hint {
	font-size: .82em;
	color: #999;
	margin: 0 0 16px;
}

.sd-wl-submit {
	display: block !important;
	width: 100% !important;
	padding: 12px !important;
	font-size: 1em !important;
	cursor: pointer;
	text-align: center;
}

.sd-wl-submit:disabled {
	opacity: .6;
	cursor: not-allowed;
}

.sd-wl-msg {
	margin-top: 14px;
	padding: 12px 16px;
	border-radius: 4px;
	font-size: .95em;
	font-weight: 500;
}

.sd-wl-msg.is-success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}
.sd-wl-msg.is-success br + br {
	display: block;
	content: '';
	margin-top: 6px;
}

.sd-wl-msg.is-error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}
