div.ef_form {
	margin: 0;
	padding: 10px;
/*	background-color: red;*/
}
div.ef_flex_container {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
div.ef_entry {
	flex: 1 0 34%;
	min-width: 200px;
	position: relative;
}
div.ef_entry {
		textarea, input[type="text"], input[type="password"], input[type="datetime-local"], select {
		width: 100%;
	}
}
div.ef_form label {
	margin: 0;
	font-size: 14px;
}

/*input[type="text"] {
	width: 100%;
}*/

input.button {
	margin: 10px;
}

.ef_entry.ef_1col {
	flex: 1 0 51%;
}
.ef_entry.ef_2col {
	flex: 1 0 34%;
}


.ef_warning {
/*	display: none;*/
	color: hsl(0 80% 50%);
	font-weight: bold;
	font-size: 14px;
/*	padding: 10px;*/
}

/* GREEN */
div.ef_form.green {
	label {
		font-size: 15px;
		color: hsl(120 20% 20%);
	}
}