input,textarea{
	font-family: "Roboto";
	font-size: 12px;
	box-sizing: border-box;
}

input[type=text],input[type=password],input[type=email],input[type=number],textarea{
	border: 1px solid #ccc;
	padding: 5px;
}

textarea{
	height: 150px;
	resize: none;
}

input[type=button],input[type=submit]{
	border: 0px;
	background-color: #475474;
	color: white;
	font-weight: bold;
	padding: 8px 16px;
	font-size: 14px;
	cursor: pointer;
	border-radius: 4px;
}

input[type=button]:hover,input[type=submit]:hover{
	background-color: #374259;
}

input[type=button][disabled],input[type=submit][disabled]{
	background-color: #ccc;
	cursor: pointer;
}

input[type=checkbox]{
	vertical-align: middle;
	margin-right: 3px;
}











table.form{
	margin-top: 15px;
}

table.form th,
table.form td{
	vertical-align: top;
	padding-top: 10px;
}

table.form th{
	text-align: left;
	color: #475474;
	line-height: 1.3em;
	padding-top: 14px;
	padding-right: 10px;
}

table.form td.checkbox{
	padding-top: 15px;
}

table.form td.checkbox li:not(:first-child){
	margin-top: 5px;
}

table.form td.checkbox li label{
	font-size: 12px;
}

table.form input[type=text],table.form input[type=password],table.form input[type=email]{
	width: 250px;
}

table.form textarea{
	width: 450px;
}

table.form tr.hr td{
	border-bottom: 1px solid #ccc;
}

@media (max-width: 1000px) {
	table.form,
	table.form tbody,
	table.form tr,
	table.form th,
	table.form td{
		display: block;
	}

	table.form{
		width: 100%;
	}

	table.form th{
		padding-top: 10px;
	}

	table.form td{
		padding-top: 4px;
	}

	table.form tr.hr td{
		padding-top: 14px;
	}

	table.form input[type=text],table.form input[type=password],table.form input[type=email],table.form textarea{
		max-width: 100% !important;
	}
}