

form {
	margin-left: 150px;

}

 label {

	text-decoration: underline;

}

input[type=text] {
	width: 20%;
	margin-right: 20px;
	margin-bottom: 10px
	margin-top: 10px;
	border: 2px solid gray;
}

input[type=text]:focus {

	background-color: gray;
	color: white;

}

textarea {
    width: 80%;
    height: 400px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 2px solid gray;
    border-radius: 4px;
    resize: none;
}

textarea:focus {

	background-color: gray;
	color: white;

}

input[type=submit] {
	cursor: pointer;
	border: 3px inset black;
	width: 25%;
	height: 30px;
}

input[type=reset] {
	cursor: pointer;
	border: 3px inset black;
	width: 25%;
	height: 30px;
	margin-left: 500px;
}