.dwf-form-wrapper {
	max-width: 640px;
	margin: 0 auto;
}

.dwf-form-description {
	margin-bottom: 1.5rem;
}

.dwf-field {
	margin-bottom: 1.25rem;
}

.dwf-field label {
	display: block;
	font-weight: 600;
	margin-bottom: 0.35rem;
}

.dwf-field input[type="text"],
.dwf-field input[type="email"],
.dwf-field input[type="tel"],
.dwf-field input[type="number"],
.dwf-field input[type="date"],
.dwf-field select,
.dwf-field textarea {
	width: 100%;
	padding: 0.6rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 1rem;
}

.dwf-required {
	color: #c00;
}

.dwf-honeypot {
	position: absolute;
	left: -9999px;
	height: 0;
	overflow: hidden;
}

.dwf-privacy-label,
.dwf-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
	font-weight: normal;
}

.dwf-submit-button {
	background: #2c2c2c;
	color: #fff;
	border: none;
	padding: 0.75rem 2rem;
	font-size: 1rem;
	border-radius: 4px;
	cursor: pointer;
}

.dwf-submit-button:hover {
	background: #444;
}

.dwf-submit-button:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}

.dwf-message {
	padding: 1rem;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.dwf-message--success {
	background: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.dwf-message--error {
	background: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

.dwf-form-response {
	padding: 1rem;
	border-radius: 4px;
	margin-bottom: 1rem;
}

.dwf-form-response.dwf-success {
	background: #d4edda;
	color: #155724;
}

.dwf-form-response.dwf-error {
	background: #f8d7da;
	color: #721c24;
}
