@charset "utf-8";
/* CSS Document */
.form
{
	width:570px;
	height:370px;
	background:#f4f4f4;
	margin:auto;
	margin-top:110px;
	padding:40px 0px 0px 50px;
	border-radius:5px;
	border:1px solid #e6e6e6;
}
.subtitle
{
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	font-weight:bold;
	color:#544b4b;
	position:relative;
	top:90px;
	left:230px;
	width:450px;
}
.typography
{
	font-family:Verdana, Geneva, sans-serif;
	font-size:12px;
	color:#544B4B;
	font-weight:bold;
}
.text_field
{
	outline:none;
	background:#FFF;
	border:1px solid #CCC;
	border-radius:4px;
	height:20px;
	width:200px;
	-moz-transition:ease-in-out 400ms;
	-webkit-transition:ease-in-out 400ms;
	-o-transition:ease-in-out 400ms;
	transition:ease-in-out 400ms;
}
.text_field:hover
{
	box-shadow:#000 0px 0px 3px inset;
}
.text_field:focus
{
	box-shadow:#999 0px 0px 3px inset;
}
.button
{
	background:#FFF;
	border:1px solid #CCC;
	border-radius:4px;
	height:30px;
	width:90px;
	-moz-transition:ease-in-out 400ms;
	-webkit-transition:ease-in-out 400ms;
	-o-transition:ease-in-out 400ms;
	transition:ease-in-out 400ms;
}
.button:hover
{
	box-shadow:#03C 0px 0px 3px inset;
}