body{
    margin: 0;
}

header{
    width:100%;
    height: 40px;
    background-color: #006699;
    margin-bottom: 8px;
}

header .rightDisplay{
    position: relative;
    right: 0;
    
}

footer{
    position: absolute;
    bottom:0;
    width:100%;
    height: 40px;
    background-color: #006699;
}

article{
    width: 100%;
    min-height: 300px;
}

form{
    width:200px;
    margin:auto;
    padding: 2px;
    border: 3px #006699 solid;
    background-color: #bbccdd;
}

label{
    display: block;
    width: 100%;
    text-align:center;
    font-variant: small-caps;
    color: #fff;
}

input{
    border: 1px #006699 solid;
}

input[type=text]{
    display: block;
    width: 200px;
    margin: auto;
}

input[type=password]{
    display: block;
    width: 200px;
    margin: auto;
}

input[type=submit]{
    display: block;
    width: 200px;
    margin: 6px auto;
    background-color: #006699;
    color: #fff;
    font-variant: small-caps;
}

.error{
    width: 100%;
    text-align: center;
    font-variant: small-caps;
    text-transform: uppercase;
    color: red;
    font-size: 10px;
}