label{
	width: 100%;
}
.contact-me.text{
	width: 100%;
}
.contact-me.textarea{
	width: 100%;
	height: 100%;
}
.writing{
	color: #fff207;
	border-color: #fff207;
}
.complete{
	color:green;
	border-color: green;
}
/*Valid and Invalid input*/
.invalid{
	color: red;
}
.valid{
	color:green;
}


/*Hide and show input requirments*/
input:not([type="submit"]) + .input-requirments{
	overflow:hidden;
	max-height: 0px;
	transition: max-height 1s ease-out;
}

input:not([type="submit"]):hover + .input-requirments,
input:not([type="submit"]):focus + .input-requirments,
input:not([type="submit"]):active + .input-requirments{
	max-height: 1000px;
	transition: max-height 1s ease-in;	
}

textarea:not([type="submit"]) + .textarea-requirments{
	overflow:hidden;
	max-height: 0px;
	transition: max-height 1s ease-out;
}

textarea:hover + .textarea-requirments,
textarea:focus + .textarea-requirments,
textarea:active + .textarea-requirments{
	max-height: 1000px;
	transition: max-height 1s ease-in;	
}

