* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

.containerAuth {
  /* position: absolute !important;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 50%; */
  text-align: center;
  padding: 20px; 
}

form#formAuth {
  position: absolute !important;
  top: 33%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 35%; 
}

form#formAuth label.lblAuth {
  text-align: left;
  font-weight: bold;
  color: #4277bb;
  margin-left: 5px;
  padding-top: 10px;
  margin-bottom: -10px;
}

.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

a {
  text-decoration: none;
  padding: 10px;
  color: grey;
}


@media only screen and (max-width: 767px),
  (min-device-width: 767px) and (max-device-width: 1024px) {

    form#formAuth {
      max-width: 85%;
    }
}