@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
body#login {
  display: flex;
  align-items: center;
  height: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
}
body#login input, body#login textarea, body#login button {
  font-family: "Open Sans", sans-serif;
}
body#login input::-moz-placeholder, body#login textarea::-moz-placeholder, body#login button::-moz-placeholder {
  font-weight: 300;
}
body#login input::placeholder, body#login textarea::placeholder, body#login button::placeholder {
  font-weight: 300;
}
body#login .btn-success {
  background-color: #43B2BE;
  border-color: rgba(0, 0, 0, 0.2);
}
body#login .btn-success:hover {
  background-color: #3E949B;
}
body#login .btn-warning {
  background-color: #34B297;
  border-color: rgba(0, 0, 0, 0.2);
  color: white;
}
body#login .btn-warning.w2 {
  background-color: #b23434;
}
body#login .btn-warning:hover {
  background-color: #3E949B;
}
body#login h2, body#login h3, body#login h4, body#login h5, body#login h1 {
  color: #47B4C0;
  font-weight: 400;
}
@media (max-width: 991px) {
  body#login form {
    margin-top: 50px;
  }
}
body#login h5.portal-acesso {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
@media (max-width: 991px) {
  body#login h5.portal-acesso {
    font-size: 15px;
  }
}
body#login .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#3FADB9, #258A94);
  display: block;
  z-index: 1;
  background-size: cover;
}
body#login .overlay:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  background: linear-gradient(transparent, #000);
  opacity: 0.5;
  z-index: 2;
  content: "";
}
body#login .container {
  position: relative;
  z-index: 3;
}
body#login .form {
  max-width: 800px;
  width: 80%;
  border-radius: 5px;
  background: #f7f7f7;
  padding: 30px;
  display: block;
  margin: auto;
  position: relative;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  margin-top: 100px;
  margin-bottom: 100px;
  min-width: 350px;
}
body#login .form .fw-bold {
  color: #333;
}
body#login .form .logo {
  max-width: 400px;
  width: 100%;
}
body#login .form .fields input {
  margin-bottom: 10px;
}
body#login .overlay-form {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 10;
  background: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  left: 0;
  top: 0;
  border-radius: 5px;
}
body#login .overlay-form h5 {
  margin-left: -32px;
  color: #000;
  margin-bottom: 20px;
}
body#login .loader {
  width: 16px;
  height: 16px;
  position: relative;
  left: -32px;
  border-radius: 50%;
  color: #000;
  background: currentColor;
  box-shadow: 32px 0, -32px 0, 64px 0;
}
body#login .loader::after {
  content: "";
  position: absolute;
  left: -32px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 10px;
  background: #43B2BE;
  animation: move 3s linear infinite alternate;
}
@keyframes move {
  0%, 5% {
    left: -32px;
    width: 16px;
  }
  15%, 20% {
    left: -32px;
    width: 48px;
  }
  30%, 35% {
    left: 0px;
    width: 16px;
  }
  45%, 50% {
    left: 0px;
    width: 48px;
  }
  60%, 65% {
    left: 32px;
    width: 16px;
  }
  75%, 80% {
    left: 32px;
    width: 48px;
  }
  95%, 100% {
    left: 64px;
    width: 16px;
  }
}

#overlay {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background: #f7f7f2;
}

#overlay .cv-spinner {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 70px;
}

#overlay .cv-spinner img {
  width: 250px;
  margin-top: -120px;
}

#overlay .spinner {
  width: 40px;
  height: 40px;
  border: 4px #ddd solid;
  border-top: 4px #6AA643 solid;
  border-radius: 50%;
  animation: sp-anime 0.8s infinite linear;
}

@keyframes sp-anime {
  100% {
    transform: rotate(360deg);
  }
}
#overlay.is-hide {
  display: none;
}/*# sourceMappingURL=custom.css.map */