#table_registration
{
	box-shadow: rgb(0, 0, 0, 0.2);
	color: silver;
}

#table_registration form
{
	bor der: 1px solid red;
	padding: 3px;
	box-shadow: 0px 0px 10px rgb(0, 0, 0, 0.9);
}

#table_registration table
{ 
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	font-family: Microsoft Sans Serif;
}

#table_registration th
{
	font-weight: bold;
	text-align: right;
	padding: 5px;
	width: 30%;
	background: rgb(0, 0, 0, 0.4);
	border-radius: 5px;
	
}

#table_registration td
{
	text-align: center;
	vertical-align: middle;
}

#table_registration td:hover
{
	background: rgb(0, 0, 0, 0.1);

	
}

#table_registration input
{
	width: 99%;
	background: rgb(0, 0, 0, 0.2);
	-webkit-background: rgb(0, 0, 0, 0.2);   
	-moz-background: rgb(0, 0, 0, 0.2);    
	-o-background: rgb(0, 0, 0, 0.2);
	border: 0px;
	color: silver;
	font-size: 1em;
	border-radius: 5px;
	padding: 3px;
}

#table_registration input[type="submit"]
{
	height: 100px;
	width: 100%;
	color: gray;
	
	transition: all 0.2s;
}

#table_registration input[type="submit"]:hover
{
	color: #ff9500;
	
	text-shadow: 0px 0px 100px #ffd190;
	font-size: 2em;
	
}

#table_registration input[type="submit"]:active
{
	color: #33CCFF;
	
	text-shadow: 0px 0px 100px #33CCFF;
	font-size: 1.9em;
}

#table_registration input[type="checkbox"]
{
	position: relative;
	left: -250px;
	top: 2px;
	appearance: none;
	-webkit-appearance: none;  
	-moz-appearance: none;   
	-o-appearance: none;
	border: 4px double #ff9500;
	width: 20px;
	height: 20px;
	
}

#table_registration input[type="checkbox"]:checked
{
	width: 20px;
	height: 20px;
}


#table_registration input[type="checkbox"]:checked::after
 {
  content: "✔"; /* Checkmark */
  position: relative;
  right: 3px;
  top: -10px;
  color: #ff9500;
 }




