* {
  box-sizing: border-box;
  margin:0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
}

html, body { 
	height: 100%; 
	width: 100%; 
	margin: 0; 
	background-color: #FFF;
  color: #4d4d4d;
}

a {
  text-decoration: none;
  color: #f7921e;
}

a:hover{
	color: #fff;
	text-decoration: none;
}


/*---------- Contact form ----------*/

#contact{
	display: flex;
	margin: auto;
	padding: 1rem;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 80%;
	border-radius: 10px;
	border-color: #4d4d4d;
	border-style: solid;
	border-width: 2rem;
}

#contact label{
	margin-top: 1rem;
	background: #fff;
	width: 90%;
	padding: 0.5rem;
	height: 2rem;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

#contact input{
	width: 90%;
	height: 1.5rem;
}

#contact textarea{
	width: 90%;
	height: 5rem;
	resize: none;
}

#submit_btn input[type=submit] {
	margin: 0.1rem;
	padding: 0.4rem;
	width: 6rem;
	height: 2rem;
	background: #fff;
	border: none;
	font-weight: bold;
	font-size: 1rem;
}

#submit_btn input[type=submit]:hover {
  background-color: #f7921e;
 }

.h-captcha{
	margin: 1rem;
}
