@font-face {
    font-family: fontBold;
    /*src: url("./../font/Gotham-Black.otf") format("opentype");*/
    src: url("./../font/metropolis.black.otf") format("opentype");
}
@font-face {
    font-family: fontLight;
    /*src: url("./../font/Gotham-Light.otf") format("opentype");*/
    src: url("./../font/metropolis.light.otf") format("opentype");
}
@font-face {
    font-family: fontMedium;
    /*src: url("./../font/GothamMedium.ttf") format("opentype");*/
    src: url("./../font/metropolis.medium.otf") format("opentype");
}

@media only screen and (max-device-width: 480px) {      
    p { -webkit-text-size-adjust:100% }               
}

body{
    background-color: #333333;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden;
    width: 100%;

    
    font-family: fontMedium;

    background-image: url(./../img/bg.jpg);
    background-position: bottom;
    background-repeat: no-repeat;
    background-attachment: fixed;    
    background-size: auto;
}

#contLogin{
    width: 80vw;
    max-width: 400px;
    height: 270px;
    background-color: rgba(33,33,33,0.6);
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 45%;
    transform: translate(-50%, -50%);
}

#logoLogin{
    width: 80%;
    margin-left: 13%;
    margin-top: -20px;
    margin-bottom: 20px;
}

.inputLogin{
    font-family: fontMedium;
    width: 80%;
    margin-left: 10%;
    margin-top: 10px;
    border: 0px solid black;
    color: #ffffff;
    outline: none;
    background-color: rgba(33, 33, 33, 0.6);
    padding-left: 10px;
    border-radius: 8px;
}

#btnLogin{
    width: 100px;
    color: #ffffff;
    float: right;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    background-color: #006a00;
    margin-top: 20px;
    height: 30px;
    margin-right: 13px;
    border-radius: 8px;
    cursor: pointer;
    user-select: none;
    transition: 0.3s;
}

#btnLogin:hover{
    background-color: #00c100;
}

#logErroreLogin{
    float: left;
    color: red;
    width: calc( 100% - 120px );
    padding-left: 10%;
    padding-right: 5%;
    padding-top: 10px;
}