*{
    box-sizing: border-box;
    font-family: 'Montserrat Regular';
}

html, body{
    max-width: 450px;
    width: 100%;
    margin: 0 auto;
    padding: 0px;
}

header h2{
	color:#ffffff;
	margin-bottom: 0;
}
header p{
	color: #ffffff;
	margin-top: 0;
}

.center{
    text-align: center;
}

img{
    padding: 10px;
    max-width: 100%;
}

form ul{
    list-style: none;
    padding: 0 20px;
}

form ul li{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

input[type="checkbox"]{
    margin-right: 10px;
}

input[type="text"]{
    padding: 10px 15px;
    border-color: #00144B;
    border-radius: 10px;
    border-width: 1px;
}

label{
    margin: 10px 0;
    font-size: 0.7em;
}

button, header a{
    display: block;
    margin: 0 auto;
    border: 0;
    background: #00144B;
    color: #fff;
    font-family: 'Montserrat ExtraBold';
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 1.5em;
    width: 100%;
	margin-bottom: 16px;
	text-decoration: none;
}

h2{
    font-family: 'Montserrat ExtraBold';
    color: #00144B;
}

li.column{
    flex-direction: column;
    align-items: stretch;
}

div#loader{
    background: #fff;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
}

p, div{
	padding: 0 10px; 
}

form{
	padding: 0 30px;
}

#error{
	text-align: center;
	color: red;
}