html
{
    -webkit-text-size-adjust: 100%;
}

div, header, main, footer {
    display:block;
    box-sizing:border-box;
    margin:0;
    padding:0;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size:18px;
    margin:0;
    margin-top:64px;
    padding:0;
    position:relative;
    background-color: #006699;
    color: #fff;
}

header {
    width: 100%;
    text-align: center;
    font-size: 80px;
    -webkit-user-select: none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

.solvi {
    font-size: 60%;
}

.hrafnhildur {
    font-size: 80%;
}

main {
	margin:3em auto;
	width:15em;
}

footer {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    clear:both;
    width:100%;
    padding-top:5rem;
    text-align:center;
    letter-spacing:0.2em;
}

input[type=text],
input[type=password] {
    font-family: "Open Sans", sans-serif;
    width:100%;
    box-sizing:border-box;
    padding:0.3rem;
	-webkit-border-radius: 0.3rem;
    border-radius: 0.3rem;
    font-size:1.2em;
}

input[type=text]:focus,
input[type=password]:focus {
    outline:none;
    box-shadow:0 0 4px #323536;
}

p {
    letter-spacing:0.1em;
    -webkit-user-select: none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
}

p.login-failed {
    display: block;
    box-sizing: border-box;
    width: 96%;
    max-width: 600px;
    margin: 25px auto 10px auto;
    text-transform: initial;
    font-size:1rem;
    border: 2px solid red;
    color: red;
    font-weight: normal;
    user-select: none;
    box-shadow: 3px 3px 5px #828586;
    padding:20px;    
}

.form-submit {
    text-align:right;
}


input[type=submit] {
    display:inline-block;
    font-family: "Open Sans", sans-serif;
    font-size:0.9rem;
    height:2rem;
    line-height:2rem;
    margin:0.1em;
	padding:0 0.8em;
	background:#eee;
	color:#000;
	border:0 none;
	font-weight:normal;
    cursor:auto;
    -webkit-border-radius: 0.4em;
    border-radius: 0.4em;
    box-shadow:0.15em 0.15em 0.2em #323536;
}


input[type=submit]:hover {
    background-color:#ddd;
}

