/**
* Destinado ao Login
*/

body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

#background-login {
    background-image: url(/static/img/login-background.png);
    filter: blur(8px);
    -webkit-filter: blur(8px);
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
}

#container-login {
    color: white;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
    padding: 20px;
    text-align: center;
}

.alert-message {
    color: #CCC;
}

/* ATIVAR JOB */
.labelInputAtivarJob{
    color: #7a7979;
    text-align: left;
}
#btnCopiarMacInterface{
    margin-top: 20px;
}

@media screen and (max-width: 640px) {
    #container-login {
        width: 100%;
    }
}