/* LOGIN */

.login {
  padding: 50px 0;
  min-height: 100vh;
  text-align: center;
  z-index: 9999;
}

.login-img-bk {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  overflow: hidden;
}

.login-logo {
  position: relative;
  z-index: 99;
}

.login form {
  position: relative;
  z-index: 99;
  max-width: 320px;
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  background-color: #ffffff;
  padding: 20px 40px 10px 40px;
  border-radius: 4px;
  color: #505e6c;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
  text-align: left;
}

.login .form-select, .login .form-control {
  box-shadow: none;
  outline: none;
  color: inherit;
  text-indent: 8px;
  height: 42px;
  margin-bottom: 15px;
  text-align: left;
}

.login-item {
  position: relative;
  z-index: 99;
  max-width: 320px;
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 4px;
  color: #505e6c;
  box-shadow: 1px 1px 5px rgba(0,0,0,0.1);
  text-align: center;
}

.unidadeSelect {
  display: none;
}

.unidadeSelect.show {
  display: block;
}

.loginErroInput {
  border: 2px solid #f44336 !important;
}

.loginErroMsg {
  color: #f44336;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
}

