*{
    box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;
    padding:0;
    margin:0;
    
}

html, body{
    margin: 0;
    padding: 0;
    margin:0;
    padding:0;
    width:100%;
    height: 100%;
    min-height:100%;
    background-image:url("background_3.png");
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    font-family: sans-serif;
}


.login{
    width:300px;
    height:370px;
    background: #fff;
    color: #000;
    top: 50%;
    left: 80%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 40px 25px;
    border-radius: 5px;
        
}

img{
    width:100%;
     position: relative;
     padding-bottom: 25px;
     
}
 
.login img{
   
    margin-left: auto;
    margin-right: auto;
    
}

.login input{
    width: 100%;
    margin-bottom: 10px;
    
}

.login input[type = "text"], input[type="password"]
{
    border-color: #003764;
    background: transparent;
    color:#003764;
    outline: none;
    height: 33px;
    font-size: 14px;
} 

input::placeholder{
    font-size: 14px;
    font-weight: bold;
    color: #003764;
    padding-left: 10px;
    opacity: 0.9;
    
}

.login input[type="submit"]{
    border:none;
    outline: none;
    height: 33px;
    color: #fff;
    background: #003764;
    font-size: 14px;
    border-radius: 4px;
    margin-top: 12px;
    width: 100%;
    cursor: pointer;
    
}


.login a {
    text-decoration: none;
    font-size: 12px;
    line-height: 18px;
    margin-top: -10px;
    float: right;
    color: #003764;
    font-weight: bold;
    opacity: 0.9;
}

.login a:hover{
    text-decoration: underline;
}

#tutorial{
    width: 100%;
    border:none;
    outline: none;
    height: 33px;
    color: #003764;
    background: #05f0ff;
    font-size: 14px;
    border-radius: 4px;
    cursor: pointer;
}



footer{
    background-color: transparent;
    font-size: 15px;
    color: #fff;
    background-color: #003764;
    text-align: center;
    bottom: 0px;
    position: absolute;
    height: 50px;
    padding-left: 50px;
    display: flex;
    align-items: center;
    left: 0;
    right: 0;
    border-top:3px solid #05f0ff
    /*justify-content: center;
    width: 100%;*/
}

img.eclipse {  
    right: 0px;
    width: 90px;
    bottom: 0px;
    position: absolute;
    padding-bottom: 0px;

}

iframe#manual-window{
    padding:2em 4em;
}

#manual-window{

        position:fixed;
        background-color:rgba(0,0,0,0.5);
        z-index:3000;
        height:100%;
        width:100%;
        top:100%;
        bottom:0;
        left:0;
        right:0;
        padding:5% 20%;
        
}

/* Tablet ViewPOrt*/

@media (max-width: 1567px) { 

    .login{
        width:300px;
        height:370px;
        margin-top:unset;
        top: 50%;
        position: absolute;
        color: #000;
        left: 80%;
        text-align: center;
        background: #fff;
        
    } 
    
}

@media (max-width: 800px) {
    .login{
        width:270px;
        height:300px;
        margin-top:unset;
        top: 50%;
        position: absolute;
        color: #000;
        left: 50%;
        text-align: center;
        background: #fff;
               
    } 

    footer {
        padding-left: 0px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    #tutorial{
        display: none;
    }

    img.eclipse {  
        display: none;
    }

    .login input{
        margin-bottom: 15px;
        
    }
}