﻿body {
    /* Location of the image */
    background-image: url(/images/inloggen_back.png);
    /* Background image is centered vertically and horizontally at all times */
    background-position: center center;
    /* Background image doesn't tile */
    background-repeat: no-repeat;
    /* Background image is fixed in the viewport so that it doesn't move when 
     the content's height is greater than the image's height */
    background-attachment: fixed;
    /* This is what makes the background image rescale based
     on the container's size */
    background-size: cover;
    /* Set a background color that will be displayed
     while the background image is loading */
    background-color: #464646;
}


a:link, a:visited, a:active {
    color: #008490;
    text-decoration: none;
    font-size: 10pt;
}

a:hover {
    text-decoration: underline;
}

.inlogbox {
    min-width: 260px;
}

    .inlogbox input[type=submit] {
        margin-bottom: 4px;
    }


.decl_logo {
    text-align: center;
    min-width: 350px;
}

    .decl_logo img {
        display: inline;
        height: 100px;
        margin-top: 30px;
    }

.declaratiebox {
    width: calc(100% - 40px);
    max-width: 1000px;
    margin: 0px auto;
    font-size: 11pt;
    text-align: left;
    margin-bottom: 20px;
}

    .declaratiebox input[type=text] {
        max-width: 416px;
        margin-bottom: 5px;
    }
