*, html{
	margin:0;
	padding:0;		
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}		
*::after, *::before {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body{
	min-height:100%;
	font-size: 16px;
	font-family: Arial;
}
.starter-template{
	padding: 2rem;
	min-height:100vh;
}
form{
	max-width: 550px;
	margin: 0 auto;
	border-radius: 5px;
	border: 1px solid #1F2B49;
	padding: .5rem;
	text-align: center;
}
.form-group{
	margin-bottom: 1rem;
}
h1{
	font-size: 3.5rem;
	margin-bottom: .5rem;
	text-align:center;
}
h2{
	font-size: 1.7rem;
	text-align: center;
	max-width:550px;
	margin: 0 auto .5rem;
}
h3{
	max-width: 550px;
	padding:0 2rem;
	margin: 1rem auto;
	text-align: center;
}
h3 b{
	background:red;
	font-size:2.5rem;
	display:block;
	margin-top:1rem;
}
h4{
	text-align:center;
	font-size:2rem;
	margin: .5rem auto;
}
label{
	margin: 0 0 1rem 0;
	font-weight:bold;
	display: block;
	text-align: left;
	color: #000;
}
input, textarea{	
	padding: 1rem;
	background: #fff;
	display:block;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	-ms-border-radius: 5px;
	border-radius: 5px;
        width: 100%;
    	border: 1px solid #1F2B49;
}
textarea{
	min-height:6rem;
}
button{
        text-transform: uppercase;
        padding: 3.5rem;
        display: block;
        position: relative;
        font-size: 1.5rem;
        cursor: pointer;
        font-weight: bold;
	border: 1px solid #1F2B49;
    	background: #1f2B49;
	color: #fff;
	width: 100%;
	margin:1rem 0;
	transition: .3s;
	-webkit-transition: background 200ms ease-out, color 200ms ease-out;
        transition: background 200ms ease-out, color 200ms ease-out;
	border-radius:5px;
}
button:hover{
	color: #1F2B49;
        background: #FFF;
        text-decoration: none;
        transition: .3s;
        text-decoration: none;
        -webkit-transition: background 200ms ease-out, color 200ms ease-out;
        transition: background 200ms ease-out, color 200ms ease-out;
}
.btn:active, .btn:focus {
        outline: none;
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0,.2);
}
.footer{
	text-align: center;
	font-size: 13px;
	margin-top: 2rem;

}
@media(max-width:500px){
	form{
		margin:0 -2rem;
		border: 0;
	}
	h1{
		font-size:2.5rem;
	}
	h2{
		font-size:1.5rem;
	}
}
