#login{
    width: 100vw;
    height: 100vh;
    background-color: rgba(59,60,56,1);
    overflow: hidden;
}
#login-logo{
    width: 100vw;
    height: 100vh;
    background-image: url("../img/nostra.png");
    background-repeat: no-repeat;
    background-position: center;
    padding-top: 5px;
}
#login-container, #login-row{
    height: 100vh;
}
#login-acesso-img{
    max-width: 225px;
}
#login-acesso-box{
    width: 100%;
    height: 420px;
    background-color: rgba(91,93,91,1);
    border-top: 8px solid rgba(0,151,159,1);
}
.login-dados{
    padding-top: 15px;
}
#form-login::placeholder{
    color: rgba(132,132,132,1);
}
#form-senha::placeholder{
    color: rgba(132,132,132,1);
}
#form-button{
    border: 3px solid rgba(0,151,159,1);
    border-radius: 20px;
    padding: 5px 52px;
    color: #FFF;
    background-color: rgba(91,93,91,0.8);
}
#esqueci-senha{
    padding-left: 10px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
    transition: 0.3s;
    background-color: rgba(91,93,91,1);
    border: none;
    cursor: pointer;
    font-family: montserrat-regular;
}
#esqueci-senha:hover{
    color: rgba(255,255,255,1);
}

/*ACERTA O BUG DO MODAL PARA FUNCIONAR CENTRALIZADO*/
.modal-content {
  width:100%;
}
.modal-dialog-centered {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align:center;
  -ms-flex-align:center;
  align-items:center;
  min-height:calc(100% - (.5rem * 2));
}
@media (min-width: 576px) {
  .modal-dialog-centered {
    min-height:calc(100% - (1.75rem * 2));
  }
}