body{
		text-align: center;
		/*font-family: Arial;*/
	}
	form{
		text-align: left;
		display: inline-block;
		width:100%;		
		border-radius: 5px;
		background-color: #f2f2f2;
		padding: 20px;
	}
	input[type=text],input[type=email],textarea {
		width: 100%;
		padding: 12px 20px;
		margin: 8px 0;
		display: inline-block;
		border: 1px solid #ccc;
		border-radius: 4px;
		box-sizing: border-box;
	}
	input[type=submit] {
		width: 100%;
		background-color: #2a1199;
		color: white;
		padding: 14px 20px;
		margin: 8px 0;
		border: none;
		border-radius: 4px;
		cursor: pointer;
	}
	input[type=submit]:hover {
		background-color: #3612d4;
	}