html {
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
}

.header, .content, .footer {
    margin: 0;
    padding: 1px;
}

.header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 1rem;
    background-color: #335E6F;
    border-bottom: 4px solid #335E6F;
    z-index: 99999;
}

.header > div:nth-child(3) {
    margin-left: auto;
    text-align: right;
    padding-right: 40px;
}

.content {
    text-align: center;
    flex: 1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.content:after {
    content: ' ';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    background-repeat:no-repeat;
    background-position: center;
    z-index: -1;
}

.content:after {
    background-image: url("/images/bg_login.jpg");
    background-size: 100%;
    opacity: 0.5;
}

.footer {
    border-top: 4px solid #335E6F;
    margin: 0;
    z-index: 9999999;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #335E6F;
    color: #fff;
    padding: 2rem;
    text-align: center;
    font-size:0.9rem;
}

.logoTitle {
    width:100%;
    color: white;
    font-size:28px;
    font-family: 'Orbitron', sans-serif;
    font-weight: normal;
    text-shadow: 4px 4px 4px #aaa;
    text-align: center;
    cursor: default;
}

.loginbox {
    width: 30%;
    background-color: transparent;
    border: 1px solid #CCCCCC;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    padding: 10px;
    margin: 300px auto;
}

.tableLogin {
    background-color: #E9E9E9;
    opacity: 0.9;
    border-style:ridge;
    border-color:#999999;
    border-width:1px 1px 1px 1px;
    padding:8px 8px;
    text-align:center;
}

.tableLogin td {
    text-align: center;
    font-size: 16px;
    padding:8px 8px;
}

.loginSubmit {
    padding-top: 20px;
    margin: auto;
    text-align: center;
}

hr {
    border: 1px dashed #990000;
    margin-left: auto;
    margin-right: auto;
    width: 80%
}

hr.style-one {
    border: 0;
    height: 1px;
    background: #333;
    background-image: -webkit-linear-gradient(to left, #ccc, #333, #ccc);
    background-image: -moz-linear-gradient(to left, #ccc, #333, #ccc);
    background-image: -ms-linear-gradient(to left, #ccc, #333, #ccc);
    background-image: -o-linear-gradient( to left, #ccc, #333, #ccc);
}

.button-class, input[type=file]::file-selector-button  {
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font-size: 0.9em;
    color: #1F497B;
    min-width:50px;
    padding: 5px 5px;
    margin-left: 10px;
    border: solid 1px #0076a3;
    border-radius: 8px;
    background: -webkit-linear-gradient(to top, #CCC, #EAEAEA);
    background: -moz-linear-gradient(to top, #CCC, #EAEAEA);
    background: -ms-linear-gradient(to top, #CCC, #EAEAEA);
    background: -o-linear-gradient(to top, #CCC, #EAEAEA);
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
    box-shadow: 0 1px 1px rgba(0,0,0,0.5);
}

.button-class:hover {
    background: -webkit-linear-gradient(to top, #EAEAEA, #CCC);
    background: -moz-linear-gradient(to top, #EAEAEA, #CCC);
    background: -ms-linear-gradient(to top, #EAEAEA, #CCC);
    background: -o-linear-gradient(to top, #EAEAEA, #CCC);
    background: linear-gradient(to top, #EAEAEA, #CCC);
}

.button-class:active {
    position: relative;
    top: 2px;
}