form {
	padding: 12px;
}

form, .header {
	display: flex;
}

.header {
	flex-direction: row;
}

form {
	flex-direction: column;
}

.header input {
	flex: 1;
}

input[type="text"], textarea {
	align-self: center;
	border: 1px solid var(--brand-color-border);
	margin: 1pt 2pt;
	padding: 4px;
	border-radius: 4px;
	background-color: black;
	color: white;
	outline: none;
	min-width: 0px;
}

textarea {
	width: 100%;
	box-sizing: border-box;
}

@media (max-width:640px) {
	.header {
		flex-direction: column;
	}
	
	input[type="text"], textarea {
		width: 100%;
		margin: 2px;
	}
}