@charset "utf-8";
/* CSS Document */

input[type=text], input[type=email], input[type=url], select {
  width: 100%;
  padding: 5px 20px;
  margin: 0 0 8px 0;
  font-family: "DejaVu Sans", Verdana, "sans-serif";
  display: inline-block;
  border: 1px solid #ccc;
  transition: 0.3s;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea[type=text], textarea[type=email], textarea[type=url] {
  width: 100%;
  padding: 5px 20px;
  margin: 0 0 8px 0;
  font-family: "DejaVu Sans", Verdana, "sans-serif";
  display: inline-block;
  border: 1px solid #ccc;
  transition: 0.3s;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit] {
	display: inline-block;
	position: center;
	background-color: orange;
	padding-top: 6px;
	padding-bottom: 6px;
	margin: 4px 2px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	border: 2px solid green;
	border-radius: 10px;
	font-family: "DejaVu Sans", Verdana, "sans-serif";
	transition-duration: 0.1s;
	cursor: pointer;
	min-width: 100px;
}

input[type=submit]:hover {
  background-color: #be6400;
  color: azure;
}

input[type=reset] {
	display: inline-block;
	position: center;
	background-color: orange;
	padding-top: 6px;
	padding-bottom: 6px;
	margin: 4px 2px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
	border: 2px solid green;
	border-radius: 10px;
	font-family: "DejaVu Sans", Verdana, "sans-serif";
	transition-duration: 0.1s;
	cursor: pointer;
	min-width: 100px;
}

input[type=reset]:hover {
  background-color: #be6400;
  color: azure;
}

section {
  border-radius: 25px;
  background-color: #ADD9AE;
  padding: 20px;
}

td {
	padding: 0 20px;
	font-family: "DejaVu Sans", Verdana, "sans-serif";	
	font-weight: 200;
	line-height: 24px;
	color: black;
	text-align: left;
}

label {
  font-family: "DejaVu Sans", Verdana, "sans-serif";
  font-size: 16px;
}

.findin { 
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	height: 0;
	width: 0;
	z-index: -1; 
}