/* BODY */

* {
    margin: 0;
    padding: 0;
    border: 0;
}

html, body {
    width:100%; 
    height:100%;
}

.BoxContainer { 
    width:100%; 
    height:100%;
    background-color: #4C647C;
}

/* FORM LOGIN */

.boxLogin {
    float: left;
    width: 300px;
    height: 420px;
    margin-top: 100px;
    margin-left: calc(50% - 150px);
    border: solid 1px #d6d6d6;
    border-radius: 10px;
    background-color: white
}

.logoCentral {
    float: left;
    width: 150px;
    margin-left: calc(50% - 75px);
    margin-top: 20px;
}

.boxUsuario {
    float: left;
    width: 185px;
    height: 43px;
    margin-left: 57.5px;
    border: solid 1px #d6d6d6;
    border-radius: 5px;
    margin-top: 30px;
}

.boxUsuario:hover .icon-usuario {
    color: #343a40;
}

.icon-usuario {
    float: left;  
    width: 30px;
    height: 100%;
    padding-left: 8px;
    padding-top: 8px;
    color: #8c9298;
    transition: all .4s;
    border-right: solid 1px #d6d6d6;
}

.icon-usuario:hover {
    color: #343a40;
}

.txtusuario {
    float: left;
    width: 145px;
    margin-left: 5px;
    margin-top: 3px;
    outline: none;
    padding: 5px;
}

.boxSenha {
    float: left;
    width: 185px;
    height: 43px;
    margin-left: 57.5px;
    border: solid 1px #d6d6d6;
    border-radius: 5px;
    margin-top: 20px;
}

.boxSenha:hover .icon-senha {
    color: #343a40;
}

.icon-senha {
    float: left;  
    width: 30px;
    height: 100%;
    padding-left: 6px;
    padding-top: 8px;
    color: #8c9298;
    transition: all .4s;
    border-right: solid 1px #d6d6d6;
}

.icon-senha:hover {
    color: #343a40;
}

.txtsenha {
    float: left;
    width: 145px;
    margin-left: 5px;
    margin-top: 3px;
    outline: none;
    padding: 5px;
}

.btnAcessar {
    float: left;
    width: 185px;
    height: 50px;
    margin-left: 57.5px;
    margin-top: 30px;
    cursor: pointer;
    border-radius: 5px;
    color: #fff;
    background-color: #4C647C;
    border-color: #585e64;
    color: white;
    font-family: 'Nunito', sans-serif;
    font-size: 20px;
    text-align: center;
    padding-top: 10px;
    transition: all 0.4s;
}

.btnAcessar:hover {
    background-color: #343a40;
}

input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: black !important;
  -webkit-box-shadow: 0 0 0px 1000px white inset;
  transition: background-color 5000s ease-in-out 0s;
}

/* -------------------- ALERT MODAL USUARIO */

.alert-login {
    display: none;
    position: sticky;
    top: 0;
    left: 50%;
    margin-left: -250px;
    position: absolute;
    z-index: 910;
    width: 500px;
    height: 50px;
    border-radius: 5px;
}
  
.lb-login {
    width: 100%;
    height: 100%;
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    color: black;
}