#contact-area {
	width: 400px;
}

#contact-area input, #contact-area textarea {
	padding: 5px;
	width: 600px;
	font-family: "Roboto", sans-serif;
	font-size: 1.4em;
	margin: 0px 0px 10px 0px;
	border: 1px solid #ccc;
	border-radius: 5px;
}

#contact-area textarea {
	height: 90px;
	width: 500px;
}

#contact-area input {
	width: 450px;
}

#contact-area textarea:focus, #contact-area input:focus {
	border: 1px solid #900;
	outline: 0;
}

#contact-area input.submit-button {
	width: 100px;
	float: left;
	border-radius: 5px;
	font-size: 12px;
	font-family: "Roboto", sans-serif;
	font-weight: 700;
	background: #363636;
	color: #ffffff;
	border: 0px solid black;
	padding-top: 10px;
	padding-bottom: 10px;
	box-shadow: 0px 1px 2px black;
	-webkit-transition: all 0.5s ease;
     -moz-transition: all 0.5s ease;
       -o-transition: all 0.5s ease;
      -ms-transition: all 0.5s ease;
          transition: all 0.5s ease;

}

#contact-area input.submit-button:hover {
	box-shadow: 0px 1px 4px black;
	background-color: #595959;
}


label {
	visibility: hidden;
}

.placeholder {
	font-size: 15px !important;
	color: #a6a6a6;
	font-family: "Roboto", sans-serif;
	font-weight: 300;
}

.placeholder:hover {
	color: #474747;
	
}

.placeholder:active {
	color: #474747;
}