/* hack for stupid mobile Chrome and its automated font resizing (accessibility feature) */
p {max-height:10000px;}

body {
    font-family: "Campton-Book",Arial,sans-serif;
    overflow: auto;
    margin: 10px auto;
    margin-top: 0px;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
}

h1 {
    font-size: 34px;
    color: #0086b3;
}

h2 {
    font-size: 28px;
    color: #001a70;
}

h3 {
    font-size: 24px;
    color: #3f3f3f;
}

form {
    margin: 0 auto;
    padding: 0.5em;
    text-align: center;
    overflow: hidden;
    max-width: 28em;
    min-width: 300px;
    box-sizing: border-box;
}

form input {
    padding: 0.5em;
    border: 2px solid #ddd;
    border-radius: 5px;
}

form input:focus {
    outline: none;
/*    box-shadow: 0px 0px 3px 2px #5788C7;*/
    border: 2px solid #5788C7;
    border-radius: 5px;
}

form.login label, form.login {
    display: block;
}

.helptext {
    font-size: 85%;
    color: grey;
    padding: 0.5em 0;
}

.errortext {
    height: 1em;
    line-height: 1em;
    font-size: 85%;
    color: red;
    padding: 0;
}

header {
    height: 2em;
}

.user_bar {
    width: 100%;
    position: fixed;
    top: 0px;
    color: white;
    background-color: #0086b3;
    text-align: center;
}

.user_bar a {
    display: block;
    padding: 5px;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 85%;
    background-color: #0086b3;
    color: white;
    border-bottom: 1px solid #0086b3;
}

.user_bar a:link, .user_bar a:visited {
    text-decoration: none;
}

.user_bar a:hover {
    background-color: white;
    color: #0086b3;
}

button {
    padding: 0.5em 1em;
    font-size: 100%;
    cursor: pointer;
}

#body svg {
    width: 100%;
    height: 100vh;
}

footer {
    width: 100%;
    position: fixed;
    bottom: 0px;
    color: white;
    background-color: #0086b3;
    text-align: center;
}
