/* CSS Document */

#input input
{
	width: 100%;
	border: none;
	border: 2px solid #e4e4e4;
	transition-duration: 0.4s;
	padding: 10px;
	display: block;
	margin-left: auto;
	margin-right: auto;	
	border-radius: 5px;
	background-color: #ffffff;
}

#input input:focus
{
	outline: none;
}

input[type=checkbox]
{
  -webkit-appearance:checkbox;
}


#input input:hover
{
	border-bottom:1px solid grey;
	border-right:1px solid grey;
}


#label p
{
	margin:0;
	padding: 0;
	margin-bottom: 5px;
	margin-top: 5px;
	font-size:17px;
}



#input select
{
	width:100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 10px;
	border-radius: 10px 10px 0px 0px;
	background-color: white;
	border: 2px solid #e7e9eb;
}

#submit
{
	margin-left: 20px;
}

#submit input
{
	display: block;
	margin-left: auto;
	margin-top: 15px;
	padding: 10px;
	padding-left: 25px;
	padding-right: 25px;
	cursor: pointer;
	background-color: #b0c6d9;
	border: none;
	transition-duration: 0.4s;
	font-size:16px;
	color:white;
	border-radius: 10px;
}

#submit_100
{
	width:100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-left: -10px !important;
}

#submit input:hover
{
	color:#263f83;
	box-shadow: 1px 1px 8px grey;
}