@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
.spinner-animated-container {
  width: 100%;
  height: 30px;
  text-align: center;
}

.spinner-animated {
  width: 30px;
  height: 30px;
  border-width: 4px;
  border-color: #fff;
  border-style: solid;
  border-radius: 50%;
  display: inline-block;
  position: relative;
}

.spinner-animated div {
  width: 30px;
  height: 30px;
  top: -4px;
  left: -4px;
  border-width: 4px;
  border-color: #5d5c61 transparent transparent transparent;
  border-style: solid;
  border-radius: 50%;
  box-sizing: border-box;
  display: block;
  position: absolute;
  -moz-animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -webkit-animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -khtml-animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -ms-animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  -o-animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  animation: spin 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}

.spinner-animated div:nth-child(1) {
  -moz-animation-delay: -0.45s;
  -webkit-animation-delay: -0.45s;
  -khtml-animation-delay: -0.45s;
  -ms-animation-delay: -0.45s;
  -o-animation-delay: -0.45s;
  animation-delay: -0.45s;
}

.spinner-animated div:nth-child(2) {
  -moz-animation-delay: -0.3s;
  -webkit-animation-delay: -0.3s;
  -khtml-animation-delay: -0.3s;
  -ms-animation-delay: -0.3s;
  -o-animation-delay: -0.3s;
  animation-delay: -0.3s;
}

.spinner-animated div:nth-child(3) {
  -moz-animation-delay: -0.15s;
  -webkit-animation-delay: -0.15s;
  -khtml-animation-delay: -0.15s;
  -ms-animation-delay: -0.15s;
  -o-animation-delay: -0.15s;
  animation-delay: -0.15s;
}

.spinner-default {
  width: 30px;
  height: 30px;
  border-width: 4px;
  border-right-color: #5d5c61;
  border-bottom-color: #5d5c61;
  border-top-color: #fff;
  border-left-color: #fff;
  border-style: solid;
  border-radius: 50%;
  display: inline-block;
  -moz-transition: all 1s ease-out;
  -webkit-transition: all 1s ease-out;
  -khtml-transition: all 1s ease-out;
  -ms-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
  -moz-transform: rotate(0deg);
  -webkit-transform: rotate(0deg);
  -khtml-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -moz-animation: spin 2s linear 0s infinite normal both running;
  -webkit-animation: spin 2s linear 0s infinite normal both running;
  -khtml-animation: spin 2s linear 0s infinite normal both running;
  -ms-animation: spin 2s linear 0s infinite normal both running;
  -o-animation: spin 2s linear 0s infinite normal both running;
  animation: spin 2s linear 0s infinite normal both running;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-khtml-keyframes spin {
  0% {
    -khtml-transform: rotate(0deg);
  }
  100% {
    -khtml-transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  0% {
    -ms-transform: rotate(0deg);
  }
  100% {
    -ms-transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
.spinner-static {
  width: 30px;
  height: 30px;
  border-width: 4px;
  border-right-color: #5d5c61;
  border-bottom-color: #5d5c61;
  border-top-color: #fff;
  border-left-color: #fff;
  border-style: solid;
  border-radius: 50%;
  display: inline-block;
}

.spinner-static.offline {
  border-right-color: rgba(204, 204, 204, 0.5);
  border-bottom-color: rgba(204, 204, 204, 0.5);
  border-top-color: rgba(64, 64, 64, 0.5);
  border-left-color: rgba(64, 64, 64, 0.5);
}

.spinner-static.offline-invert {
  border-right-color: rgba(64, 64, 64, 0.5);
  border-bottom-color: rgba(64, 64, 64, 0.5);
  border-top-color: rgba(204, 204, 204, 0.5);
  border-left-color: rgba(204, 204, 204, 0.5);
}

.spinner-static.online {
  border-right-color: rgba(29, 213, 29, 0.8);
  border-bottom-color: rgba(29, 213, 29, 0.8);
  border-top-color: rgba(29, 213, 29, 0.3);
  border-left-color: rgba(29, 213, 29, 0.3);
}

.spinner-static.online-invert {
  border-right-color: rgba(29, 213, 29, 0.3);
  border-bottom-color: rgba(29, 213, 29, 0.3);
  border-top-color: rgba(29, 213, 29, 0.8);
  border-left-color: rgba(29, 213, 29, 0.8);
}

html, body {
  width: 100%;
  height: 100%;
  background: #5d5c61;
}

.middle-container {
  display: table;
  height: 100%;
  overflow: visible;
  position: static;
  width: 100%;
}

.middle-row {
  display: table-cell;
  position: static;
  vertical-align: middle;
  width: 100%;
}

.login-container {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  position: relative;
}

.login-container-header {
  padding: 0 0 40px;
  color: white;
  font-size: 30px;
  font-weight: 200;
  line-height: 30px;
  text-shadow: none;
}

.login-container:before {
  border-color: white transparent white;
  border-style: none solid solid;
  border-width: 0 10px 10px;
  content: "";
  left: 50%;
  margin-left: -10px;
  position: absolute;
  top: -9px;
}

.login-container h1 {
  font-family: "Muli", sans-serif;
  font-weight: 400;
}

.login-container a {
  font-family: "Muli", sans-serif;
  font-weight: 400;
  color: #59898c;
  font-size: 16px;
}

.login-container a:hover {
  color: #5d5c61;
  text-decoration: none;
}

.login-container .result {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: "Muli", sans-serif;
  font-weight: 400;
  height: 30px;
  margin-bottom: 10px;
}

.login-container .result .error {
  color: red;
}

.login-container-footer {
  padding-top: 30px;
  font-size: 12px;
  color: #FFFFFF;
  font-family: "Muli", sans-serif;
  font-weight: 400;
}
.login-container-footer .contato a, .login-container-footer .contato a:hover, .login-container-footer .contato a:active, .login-container-footer .contato a:focus, .login-container-footer .contato a:focus-within, .login-container-footer .contato a:visited {
  color: #dddddd;
  text-decoration: none;
}

#recover_box {
  display: none;
}

.placeholder {
  color: #aaa;
}

::-webkit-input-placeholder {
  color: #aaa;
}

:-moz-placeholder { /* Firefox 18- */
  color: #aaa;
}

::-moz-placeholder { /* Firefox 19+ */
  color: #aaa;
}

:-ms-input-placeholder {
  color: #aaa;
}

:input-placeholder {
  color: #aaa;
}

::input-placeholder {
  color: #aaa;
}

.login-container form span.glyphicon {
  color: gray;
}

/*# sourceMappingURL=login.css.map */
