	body{
		text-align: center;
		height: 100%;
		margin: 0;
		padding-top: 40px;
		padding-bottom: 30px;
		font-family: 'Ruda', sans-serif;
		background-repeat: no-repeat;
		background: #7f7fd5; /* fallback for old browsers */
		background: -webkit-linear-gradient(to right, #7f7fd5, #86a8e7, #91eae4); /* Chrome 10-25, Safari 5.1-6 */
		background: linear-gradient(to right, #7f7fd5, #86a8e7, #91eae4); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */	
	}
	#form, #wait, #return_form{
		margin: auto; 
		background-color: #f2f2f2;
		padding: 20px;	
		max-width: 425px;
		text-align: left;
		display: inline-block;
		width:75%;		
		border-radius: 2px;		
		font-size: 1.2rem;
		display: block;
		z-index: 1;
	}
	h1{
		font-size: 1.7rem;
		text-align: center;
	}
	textarea{
		height: 120px;
		font-family: 'Ruda', sans-serif;
		font-size: 1.7rem;
		resize: vertical;
		min-height:10px;
	}
	.logo{
		z-index: 2;
		width: 100%;
	}
	
	input[type=text],input[type=email],input[type=number],textarea {
		width: 100%;
		padding: 12px 20px;
		margin: 8px 0;
		display: inline-block;
		border: 1px solid #ccc;
		border-radius: 4px;
		box-sizing: border-box;
		font-size: 1.2rem;
	}
	#send {
		width: 100%;
		background-color: #4CAF50;
		color: white;
		padding: 14px 20px;
		margin: 8px 0;
		border: none;
		border-radius: 4px;
		cursor: pointer;
		font-size: 1.5rem;
	}
	#send:hover{
		background-color: #4CBF30;
	}
	#return_message{
		text-align: center;
	}
	#wait, #return_form{
		text-align: center;
		display: none;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
	input[type=submit]:hover {
		background-color: #45a049;
	}	
	@media only screen and (min-width: 768px) {
		/* For desktop: */
		#form, #wait, #return_form {width: 30%;}		
	}
	@media only screen and (min-width: 600px) {
		/* For tablets: */
		#form, #wait, #return_form {width: 28%;}	
	}