html, body
{
    height: 100%;
}
body
{
    background-image:url(../img/n17bg.jpg);
    background-position:center center;
    background-size:cover;
}

.container
{
    padding-top:80px;
}

.box
{
    text-align:center;
    background-color:white;
}
.box a
{
    display:block;
    width:100%;
    padding:20px 10px;
    font-size:2em;
    border:1px solid grey;
    box-shadow: 0px 0px 10px grey;
    text-decoration:none;
}
.box a:hover
{
    background-color:lightgrey;
}

.userBox
{
    height:575px;
    border:1px solid grey;
    box-shadow: 0px 0px 10px grey;
    overflow-y:scroll;
    background-color:white;
}
.userBoxEntry
{
    border:1px solid black;
    padding:15px;
}
.userBoxEntry:hover
{
    background-color:lightgrey;
    cursor:pointer;
}
.userBoxEntry table
{
    width:100%;
}
.userBoxEntry table td:first-child
{
    width:100px;
}
.userBoxEntry table td:first-child img
{
    border-radius:50%;
    background-color:red;
}
.userBoxEntry table td:last-child
{
    width:150px;
}
.loginBox
{
    background-color:rgb(0, 151, 0);
    height:575px;
    box-shadow: 0px 0px 10px grey;
    writing-mode: vertical-lr; 
}
.loginBox:hover
{
    background-color:rgb(0, 131, 0);
}
.loginBox a
{
    display:block;
    width:100%;
    height:100%;
    color:white;
    font-weight:bold;
    font-size:80pt;
    text-align:center;
    text-decoration:none;
}



/* Modals */
.modal-content
{
    border-radius:0px;
    background-color:#F7F7F7;
}
.modal-title
{
    text-align:center;
}
.modal-body
{
    padding:30px 40px;
    transition-duration:0.25s;
}
.modal-body input, .modal-body button
{
    margin-bottom:10px;
    padding:12px 12px;
    height:auto;
    font-size:16px;
    border-radius:0px;
}
.modal-content .form-loading
{
    background-image:url('../img/loading.gif');
    background-position: center center;
    background-repeat: no-repeat;
}
#login_modal_body, #remember_modal_body, #kontakt_modal_body
{
    background-color:#F7F7F7;
}

@media (max-width: 768px)
{
    .userBox
    {
        height:auto;
        min-height: 115px;
    }
    .loginBox
    {
        height:auto;
        writing-mode: horizontal-tb; 
    }
    .loginBox a
    {
        font-size:50pt;
    }
}