
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Roboto", Helvetica, Arial, sans-serif;
	font-weight: 100;
	font-size: 13px;
	color: #777;
	background: #f7f7f7;
	margin: 4em;
}

.card {
	background: #fff;
	width: 75%;
	margin: auto;
	margin-top: 5em;
	margin-bottom: 5em;
	border-radius: 10px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
}

.card .header{
	height: 6em;
	padding: 1em;
	border-top-left-radius: 10px;
	border-top-right-radius:10px;
	background: #00897B;
	position: relative;
	color: #fff;
}

.card .content {
	padding: 1em;
}

.card h1 {
	position: absolute;
	bottom: .5em;
	left: 1em;
}

.card ul {
	margin-top: .75em;
	margin-left: 1em;
	margin-right:1em;
	margin-bottom: .75em;
}

.card li {
	margin-top: .5em;
	margin-bottom: .5em;
}

fieldset {
	padding: .75em;
	margin-top: .5em;
	margin-bottom: .5em;
	border: none;
	border-top: 1px solid #ccc;	
}

input {
	border: 1px solid #ccc;
}

textarea {
	border: 1px solid #ccc;
	padding: .25em;
	width: 100%;
	resize: none;
}

input[type=text]{
	padding: .25em;
	width: 100%;
}

input[type=radio] + label{
	margin-right: 1em;
}

.buttons {
	border-top: 1px solid #ccc;
	padding: .75em;
	text-align: right;	
}

input[type=reset] {
	background: transparent;
	margin-left: .5em;
	padding: .5em;
	text-align: center;
	letter-spacing: .5px;
	border-radius: 5px;
	text-transform: uppercase;
}

input[type=submit] {
	padding: .5em;
	color: #fff;
	background-color: #009688;
	text-align: center;
	letter-spacing: .5px;
	border-radius: 5px;
	text-transform: uppercase;
	box-shadow: 0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
