@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');


form
{
	width:100%;
	
	box-sizing:border-box;
	padding:20px;
	
	font-family: 'Roboto Condensed', sans-serif;
}

form h3
{
	font-weight:100;
	margin:5px;
}

input
{
	font-weight:100;
	width:500px;
	height:35px;
	
	box-sizing:border-box;
	margin:5px;
	padding:10px;
	
	border:none;
	border-radius:0px;
	
	background:#eeeeee;
	transition:all 0.2s;	
}

textarea
{
	font-weight:100;
	width:500px;
	height:100px;
	
	box-sizing:border-box;
	margin:5px;
	padding:10px;
	resize:none;
	
	border:none;
	border-radius:0px;
	
	background:#eeeeee;
	transition:all 0.2s;	
}

select
{
	width:500px;
	
	overflow:hidden;
	border:none;
	background:#eeeeee;
	
	box-sizing:border-box;
	margin:5px;
	padding:10px;
}

hr
{
	border:none;
	height:1px;
	
	background:#e4e4e4;
	margin:10px;
	margin-left:0px;
}

input:focus,
select:focus,
textarea:focus,
button:focus 
{
    outline: none;
}

input:focus
{
	background:#f4f4f4;
	border-left:3px solid #be1111;
	transition:all 0.2s;
}

textarea:focus
{
	background:#f4f4f4;
	border-left:3px solid #be1111;
	transition:all 0.2s;
}
