form{
	display: block;
    padding: 20px;
    box-sizing: border-box;
    max-width: 500px;
    margin: 50px auto;
    background-color: #fff;
    box-shadow: 0 2px 12px hsla(0, 0%, 0%, .1);
}
form h3{
	text-align: center;
}
.red{
	color: red;
	background-color: #fff;
}
.gr{
	color: #000;
	background-color: #D6F2CD;
}
form input, form label, form textarea{
	width: 100%;
	box-sizing: border-box;
	display: block;
}
form input, form textarea{
	padding: 8px;
	border: 1px solid #ccc;
}
form textarea{
	height: 100px;
	border-radius: 4px;
}
form input[type=submit]{
	cursor: pointer;
	margin-top: 20px;
    background-color: rgb(255, 107, 107);
    color: white;
    font-weight: bold;
	border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.2s;
}
form input[type=submit]:hover{
    background-color: white;
    color: rgb(255, 107, 107);
	box-shadow: 0 0 0 1px rgb(255, 107, 107);
}
