.introText {
	margin: 5px 0;
}

form {
	input,
	select,
	textarea {
		background-color: white;
		border: 1px solid #007700;
		border-radius: 3px;
		margin: 5px 0 5px 10px;
		padding: 5px;
	}

	input:focus,
	select:focus,
	textarea:focus,
	input:focus-visible,
	select:focus-visible,
	textarea:focus-visible {
		outline: none;
		border: 1px solid darkorange;
	}

	input {
		width: 229px;
	}

	input[type=radio],
	input[type=checkbox] {
		width: auto;
	}

	input[type=submit] {
		cursor: pointer;
		/* margin: 0; */
		padding: 4px;
		width: auto;
	}
}

button {
	border: 1px solid black;
	border-radius: 4px;
	padding: 3px 5px;

	&:hover {
		background-color: #ffee99;
		cursor: pointer;
	}
}