html{
    height: 100%;
    font-family: ubuntu, verdana;
    font-size: 10pt;
}

body{
    background-color: #d4d4d4;
    height: 100%;
}

label{
    display: block;

}

input[type=submit]{
    display: block;
}

input{
    margin-bottom: 5px;
}

input[type=text], input[type=password]{
    width: calc(100% - 10px);
}

.container{
    position: absolute;
    background-color: #FFFFFF;
    width: 300px;
    height: 150px;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -75px;
    border-style: solid;
    border-color: #3b84c5;
    border-width: 2px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px #888888;

}

.header{
    background-color: #3b84c5;
    color: #FFFFFF;
    padding: 5px;
    font-weight: bold;
}

.content{
    padding: 5px;
}