body, html {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
    padding: 0;
    color: #c8c8c8; 
    font-family: "Arial";
    font-size: 100%;    
    background-image: url(/public/bg1.jpg);
    background-size: cover;  
}

.container {
    position: relative;
    width: 80%;
    height: 100%;
    margin: 0 auto;        
}

.header {
    position: relative;
    width: 100%;
    text-align: center;    
    overflow: auto;
}

.logo { 
    float: left;    
    width: 15.722%;      
}

.head_text {  
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    font-size: 4.9vw;  
    width: 84.278%;      
    font-weight: bold;    
    color: #840025;  
    text-shadow:0 0 1px #999, 0 0 1px #999, 0 0 1px #999, 0 0 1px #999, 0 0 1px #999, 0 0 1px #999;  
}

.hline {
    width: 100%;    
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: #FFF;
    clear: both;    
}

.logon {
    /* Size and position */
    width: 45%;
    margin: 0px auto;    
    position: relative;
    border-radius: 4px;
    color: #c8c8c8;    
    /*background-color: #49515a;*/
}

.logon h2 {
    font-size: 2.7vw;
    text-align: center;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 45px;
    color: #999;    
}

.logon h3 {
    font-size: 1.6vw;    
    color: #ffffff;
    font-weight: normal;    
}

input[type=button],
.btn {
    border: 2px;
    border-style: solid;    
    border-color: #530e20;
    width: 50%;

 /* Size and position */
    margin-top: 20px;
    margin-bottom: 10px;

    margin-left: auto;
    margin-right: auto;

    height: 38px;
    position: relative;

    display: block;

    /* Styles */
    
    border-radius: 3px;
    cursor: pointer;

    /* Font styles */
    font-family: 'Lato', Calibri, Arial, sans-serif;
    font-size: 24px;
    line-height: 34px; /* Same as height */
    text-align: center;
    font-weight: bold;
    text-wrap: normal;

    background: #4b0215;    
    color: #ffffff;
    
    text-decoration: none;

    /*box-shadow: 3px 3px 10px #000000;*/
}

input[type=button]:hover,
.btn:hover {
    border-color: #fff;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

input[type=button]:active,
.btn:active {
    top: 1px;
    box-shadow:none;
    border-color: transparent;    
}

#log {
    margin-bottom: 30px;
}

@media only screen and (max-width: 768px) {
    input[type=button]{
        width: 100%;
    }
    .logon {
        margin: 0px;
        width: 100%;
    }
    .head_text{
        width: 100%;
        height: 100%;
        position: relative;
        display: grid;
        place-items: center;
    }
    .header{
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    .logo{
        width: 100%;
        height: 100%;
    }
    .logo img{
        width: 100%;
    }
}