/* =============================================================
 * NNG Encroachment Form
 * Form-specific overrides on top of `forms-base.css`.
 *
 * Skeleton modeled after the Supply / Curtailment form. Add
 * form-specific tweaks here as new fields land.
 * ============================================================= */

/* Description / comments textareas get a wider, taller box so users
 * have room to describe the proposed activity. */
.nng-form.encroachment-form textarea {
	flex: 1 1 28rem;
	min-width: 0;
	max-width: 40rem;
	min-height: 6rem;
	padding: 0.5rem 0.75rem;
	font: inherit;
	color: var(--nng-color-text);
	background: var(--nng-color-bg);
	border: 1px solid var(--nng-color-border-strong);
	border-radius: var(--nng-radius-sm);
	resize: vertical;
	transition: border-color 120ms ease, box-shadow 120ms ease;
}

.nng-form.encroachment-form textarea:focus-visible {
	outline: 3px solid var(--nng-color-focus);
	outline-offset: 2px;
	border-color: var(--nng-color-focus);
}

/* Error state - matches specificity of the base textarea rule above
 * so the red border + tinted background actually paint. */
.nng-form.encroachment-form textarea[aria-invalid="true"] {
	border-color: var(--nng-color-error);
	background: var(--nng-color-error-bg);
}

@media (max-width: 720px) {

	.nng-form.encroachment-form textarea {
		max-width: 100%;
	}
}
