/* I always reset all the html elements */
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-size: 18px;
	color: #555;
}

body{
	font-family: sans-serif;
	min-height: 100%;
	padding: 20px;
}

.page{
	display: grid;
	grid-template-columns: auto 1fr;
	grid-column-gap: 150px;
	max-width: 900px;
	margin: 0 auto;
}	

.title{
	margin-bottom: 50px;
	padding-bottom: 7px;
	border-bottom: thin solid #e4e4e4;
}

.title span{
	color: #3b57b0;
}

.form-group{
	margin-bottom: 10px;
}

input[type=text]{
	padding: 7px;
	border: thin solid #d4d4d4;
}
input:focus{
	outline: none;
}

form{
	margin-top: 10px;
}

label{
	display: inline-block;
	width: 100px;
	margin-right: 10px;
}

button{
	padding: 7px;
	border: thin solid #d4d4d4;
	cursor:  pointer;
}
button:hover{
	background-color: #00b300;
	color: white;
}

.files a{
	display: block;
	margin-top: 5px;
	text-decoration: none;
	color:  #3b57b0;
}
.files a:hover{
	text-decoration: underline;
}