#contact label {
	clear: both;
	display: block;
	color: #666;
	font-size: 15px;
}

#contact button {
    background-color: #4CAF50;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#contact button:hover {
	    background-color: #45a049;

}

#contact input,textarea:focus {
	outline:0;
	outline:none;
}

#contact input, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */  
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
    outline: 3px solid rgba(0, 0, 0, 0.03);
}

#contact textarea {
	max-width: 400px;
	width: 100%;
	margin-bottom: 10px;
}

#contact input {
	max-width: 400px;
	width: 100%;
	margin-bottom: 10px;
}

.green {
	color: #3db675 !important;
	font-weight: bold;
}

#human {
	display: none;
}