﻿input{
    outline:none;
}

#LoginBackGround {
    position: absolute;
    width: 270px;
    left: 70px;
    height: 320px;
    margin-top: -160px;
    top: 60%;
    border-bottom-style: none;
    border-radius: 15px;
    box-shadow: 10px 10px 3em #222;
    background-repeat: no-repeat;
    background-image: url('../Image/BackGroundLogin.png');
}

#LoginBackUsuario {
    position: absolute;
    width: 200px;
    margin-left: -100px;
    left: 50%;
    height: 25px;
    top: 80px;
    border-radius: 5px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-top-color: #000000;
    border-left-color: #000000;
    border-right-color: #000000;
    border-bottom-color: #FFFFFF;
    background-color: #808285;
    outline:none;
}


#LoginBackSenha {
    position: absolute;
    width: 200px;
    margin-left: -100px;
    left: 50%;
    height: 25px;
    top: 150px;
    border-radius: 5px;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-top-color: #000000;
    border-left-color: #000000;
    border-right-color: #000000;
    border-bottom-color: #FFFFFF;
    background-color: #808285;
    outline:none;
}


#LoginImegeUser {
    position: absolute;
    width: 16px;
    left: 4px;
    height: 16px;
    top: 4px;
    background-image: url('../Image/User.png');
    background-repeat: no-repeat;
}

#LoginImageKey {
    position: absolute;
    width: 16px;
    left: 4px;
    height: 16px;
    top: 4px;
    background-image: url('../Image/Key.png');
    background-repeat: no-repeat;
}

.Text {
    position: absolute;
    height: 22px;
    left: 25px;
    width: 168px;
    font-family: calibri;
    font-size: 14px;
    color: #FFFFFF;
    background-color: #808285;
    border: 0px solid #808285;
    border-radius: 5px;
    padding-left: 5px;
}

.Label {
    font-family: calibri;
    font-size: 16px;
    color: #670300;
    text-shadow: #cb7a7a 0.1em 0.1em 0.1em;
    font-weight: normal;
    
}

.ButtonLogar {
    position: absolute;
    width: 100px;
    left: 20px;
    height: 25px;
    top: 265px;
    background-image: linear-gradient(to bottom, #FFFFFF, #cbc9c9);
    border-radius: 5px;
    font-family: calibri;
    font-size: 13px;
    color: #333333;
    box-shadow: 2px 2px 1em #222;
}


    .ButtonLogar:hover {
        box-shadow: 0px 0px 1em #FFFFFF;
    }

.ButtonExit {
    position: absolute;
    width: 100px;
    left: 150px;
    height: 25px;
    top: 265px;
    background-image: linear-gradient(to bottom, #FFFFFF, #cbc9c9);
    border-radius: 5px;
    font-family: calibri;
    font-size: 13px;
    color: #333333;
    box-shadow: 2px 2px 1em #222;
}

    .ButtonExit:hover {
        box-shadow: 0px 0px 1em #FFFFFF;
    }


#LoginMensagem {
    position: absolute;
    width: 250px;
    margin-left: -125px;
    left: 50%;
    height: 40px;
    top: 185px;
    word-wrap: break-word;
    text-align:center;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: transparent;
}



/*------------------------------------------
  Responsive Grid Media Queries - 1280, 1024, 768, 480
   1280-1024   - desktop (default grid)
   1024-768    - tablet landscape
   768-480     - tablet 
   480-less    - phone landscape & smaller
--------------------------------------------*/
@media all and (min-width: 1024px) and (max-width: 1280px) {
}

@media all and (min-width: 768px) and (max-width: 1024px) {
    
}

@media all and (min-width: 480px) and (max-width: 768px) {
}

@media all and (max-width: 480px) {
    .login-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #Logo {
        display: flex;
        background-image: url(../Image/Logo.png);
        background-repeat: no-repeat;
        background-color: transparent;
        background-size: contain;
        background-position: center center;
        width: 100%;
        height: 10%;
        left: 0;
        top: 3%;
    }

    #LoginBackGround {
        background-size: 100% 100%;
        left: 10%;
        width: 80%;
    }

    .ButtonLogar {
        left: 8%;
    }

    .ButtonExit {
        left:initial;
        right:8%;
    }

}

