@charset "utf-8";
/* CSS Document */
.form > .form-group {
	margin-top: 10px;
	margin-bottom: 10px;
}

.form input {
	font-size: 1.125rem;
	font-family: inherit; 
	color: inherit;
	padding: 1.5rem 2rem;
	border-radius: 2px;
	border: none;
	border-bottom: 3px solid #005100;
	width: 100%;
	display: block;
	transition: all 0.3s;
}

.form input:focus {
	outline: none;
	box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
	border-bottom: 3px solid #00CC00;
}

.form textarea {
	margin-top: 20px;
	width: 100%;
	height: 250px;
	border-radius: 3px;
	border: 3px solid #005100;
	font-size: 1.125rem;
	font-family: inherit;
	color: inherit;
	padding: 1.5rem 2rem;
	tranistion: all 0.3s;
}

.form textarea:focus {
	outline: none;
	box-shadow: 0 2rem 2rem rgba(0, 0, 0, 0.1);
	border: 3px solid #00CC00;
}

.form input::-webkit-input-placeholder, .form textarea::-webkit-input-placeholder {
	color: #404040;
/*	note this only works in chrome and edge, not firefox yet - way to style placeholders*/
}

.form input:focus::-webkit-input-placeholder, .form textarea:focus::-webkit-input-placeholder {
	color: transparent;
/*	note this only works in chrome and edge, not firefox yet - way to style placeholders*/
}

.form label {
	font-size: 1rem;
	font-weight: 600;
	color: #005100;
	margin-left: 2rem;
	margin-top: -.5rem;
	display: block;
	transition: all 0.3s;
	visibility: hidden;
	opacity: 0;
}

.form input:focus + label, .form textarea:focus + label {
	opacity: 1;
	visibility: visible; 
	transform: translateY(.15rem);
}


