/* assets/css/dsu-public.css */
.dsu-form {
	max-width: 640px;
	margin: 0 auto;
}

.dsu-form__title {
	margin-bottom: 1em;
}

.dsu-form__errors {
	border: 2px solid #b32d2e;
	background: #fbeaea;
	color: #611a1b;
	padding: 0.75em 1em;
	margin-bottom: 1em;
}

.dsu-form__field {
	display: flex;
	flex-direction: column;
	gap: 0.35em;
	margin-bottom: 1.1em;
}

.dsu-form__field label {
	font-weight: 600;
}

.dsu-form__field input,
.dsu-form__field textarea {
	padding: 0.6em 0.7em;
	border: 1px solid #6b6b6b;
	border-radius: 3px;
	font-size: 1rem;
	min-height: 44px;
}

.dsu-form__field textarea {
	min-height: 120px;
}

.dsu-form__field input:focus,
.dsu-form__field textarea:focus,
.dsu-form__submit:focus {
	outline: 3px solid #005fcc;
	outline-offset: 2px;
}

.dsu-form__submit {
	min-height: 44px;
	padding: 0.6em 1.4em;
	font-size: 1rem;
	cursor: pointer;
}

.dsu-form__summary dt {
	font-weight: 600;
	margin-top: 0.75em;
}

.dsu-form__summary dd {
	margin: 0.15em 0 0;
}
