@charset "UTF-8";
.inner-page {
  height: 100vh;
  padding: 0 !important;
  background-color: #296EAA;
}
@media (max-width: 660px) {
  .inner-page {
    width: 100% !important;
    margin: 0 auto;
  }
}

.acesso-facilitado {
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 15;
  position: relative;
  padding: 0 10px;
}
@media (max-width: 1600px) {
  .acesso-facilitado {
    flex-direction: column;
  }
}
@media screen and (orientation: portrait) {
  .acesso-facilitado {
    flex-direction: column;
  }
}

.login-box {
  z-index: 15;
  position: relative;
}

.card-login {
  background: whitesmoke;
  max-width: 50vw;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 10;
  overflow-y: auto;
}
.card-login::-webkit-scrollbar {
  width: 10px;
}
.card-login::-webkit-scrollbar-track {
  border-radius: 10px;
}
.card-login::-webkit-scrollbar-thumb {
  background: #296EAA;
  border-radius: 10px;
  border: 2px solid white;
}
.card-login::-webkit-scrollbar-thumb:hover {
  background: #1f5381;
}
@media (max-width: 1600px) {
  .card-login {
    justify-content: flex-start;
    padding: 15vh 0;
  }
}
@media (max-width: 800px) {
  .card-login {
    background: whitesmoke;
    max-width: 90% !important;
    margin: 0 auto;
    justify-content: flex-start;
  }
}
@media (max-height: 450px) {
  .card-login {
    gap: 2px;
    justify-content: flex-start;
    padding: 20px 0;
    padding-bottom: 75px !important;
  }
}
@media (orientation: portrait) {
  .card-login {
    padding-bottom: 75px !important;
  }
}
.card-mobile {
  position: fixed !important;
  top: 50vh;
  left: 0;
  bottom: 0;
  transform: translateX(90%) translateY(-50%);
  background: whitesmoke;
  display: flex;
  justify-content: center;
  align-items: center !important;
  flex-direction: column;
  width: 50vw;
  height: 100%;
  max-height: 65vh;
  z-index: 1;
  border-radius: 2px !important;
  padding: 10px;
  animation: openCardMobile 1s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.card-mobile-force-popup {
  animation: openCardMobileInMobile 0.5s ease-in-out;
  top: inherit;
  right: 0;
  transform: translateX(0) translateY(0) !important;
  z-index: 20 !important;
  background: whitesmoke;
  width: 100% !important;
  height: auto !important;
  max-height: 150px;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}
.card-mobile-force-popup h2 {
  width: 60vw !important;
  font-size: 1.5rem !important;
}
.card-mobile-force-popup:after {
  content: "×";
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 2rem;
  color: #929497;
  width: 5vw;
  height: 5vw;
  background-color: transparent;
  border: none;
}
.card-mobile-force-popup .card-mobile-body {
  display: grid !important;
  justify-content: center !important;
  align-items: center !important;
  grid-template-columns: 50% 50%;
  grid-template-areas: "h2 qrcode" "a qrcode";
  margin: 0 auto;
}
.card-mobile-force-popup .card-mobile-body h2 {
  grid-area: h2;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  justify-self: center !important;
  align-self: center !important;
}
.card-mobile-force-popup .card-mobile-body a {
  grid-area: a;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  justify-self: center !important;
  align-self: center !important;
}
.card-mobile-force-popup .card-mobile-body .qrcode {
  grid-area: qrcode;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row-reverse;
  gap: 10px;
}
.card-mobile-force-popup .card-mobile-body .qrcode p {
  text-align: left !important;
}
.card-mobile-force-popup .card-mobile-body .qrcode img {
  width: 100px !important;
  height: 100px !important;
}
.card-mobile-close {
  transform: translateX(0) translateY(100%) !important;
}
@media (max-height: 450px) {
  .card-mobile {
    max-height: 95vh;
    width: 50vw;
    transform: translateX(95%) translateY(-50%);
  }
}
@media (max-width: 660px) {
  .card-mobile {
    animation: openCardMobileInMobile 0.5s ease-in-out;
    top: inherit;
    right: 0;
    transform: translateX(0) translateY(0);
    z-index: 20 !important;
    background: whitesmoke;
    width: 100% !important;
    height: auto;
    overflow: hidden;
    box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
  }
  .card-mobile:after {
    content: "×";
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 2rem;
    color: #929497;
    width: 10vw;
    height: 10vw;
    background-color: transparent;
    border: none;
  }
}
.card-mobile-body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 660px) {
  .card-mobile-body {
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    width: 100%;
  }
}
@media (max-height: 450px) {
  .card-mobile-body {
    gap: 10px;
  }
}
.card-mobile-body h2 {
  padding: 0 !important;
  margin: 0 !important;
  font-weight: bold;
  text-transform: uppercase;
  width: 80%;
  max-width: 500px;
  text-align: center;
  letter-spacing: 1px;
  font-size: 1.25em !important;
}
@media (max-width: 660px) {
  .card-mobile-body h2 {
    font-size: 0.7em !important;
    width: 100%;
    max-width: 80% !important;
  }
}
@media (max-height: 450px) {
  .card-mobile-body h2 {
    font-size: 0.75em !important;
    width: 100%;
    max-width: 70% !important;
  }
}
.card-mobile .lojas-mobile-force-hidden {
  display: none !important;
}
.card-mobile .lojas-mobile a {
  margin: 0 !important;
}
.card-mobile .lojas-mobile a img {
  width: 100% !important;
  max-width: 175px !important;
  height: auto !important;
}
.card-mobile .lojas-mobile-only-mobile {
  display: none;
}
.card-mobile .lojas-mobile-only-mobile-force-show {
  display: flex !important;
}
@media (max-width: 660px) {
  .card-mobile .lojas-mobile {
    display: none !important;
  }
  .card-mobile .lojas-mobile-only-mobile {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
@media (max-height: 450px) {
  .card-mobile .lojas-mobile {
    gap: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80%;
  }
  .card-mobile .lojas-mobile a {
    margin: 0 !important;
  }
  .card-mobile .lojas-mobile img {
    width: 100% !important;
    height: auto !important;
  }
}
.card-mobile .qrcode {
  background-color: whitesmoke !important;
  border: 1px solid whitesmoke !important;
  padding: 0 !important;
  margin: 0 !important;
}
.card-mobile .qrcode .img_qrcode {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: contain;
  margin: 0 auto;
}
@media (max-width: 660px) {
  .card-mobile .qrcode {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    width: 90% !important;
  }
  .card-mobile .qrcode p {
    text-align: right;
    display: block;
  }
  .card-mobile .qrcode img {
    display: block;
    width: 40% !important;
    height: auto !important;
  }
}

@keyframes openCardMobile {
  from {
    transform: translateX(-50%) translateY(-50%);
  }
  to {
    transform: translateX(90%) translateY(-50%);
  }
}
@keyframes openCardMobileInMobile {
  from {
    transform: translateX(0) translateY(100%);
  }
  to {
    transform: translateX(0) translateY(0);
  }
}
.login-box {
  max-width: 400px;
  width: 90% !important;
  border-color: rgba(255, 255, 255, 0.5) !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
  border-radius: 2px !important;
}
@media (max-height: 450px) {
  .login-box {
    width: 95% !important;
    padding: 10px !important;
  }
}
@media (max-width: 450px) {
  .login-box {
    min-width: 300px;
  }
}
@media (min-width: 800px) {
  .login-box {
    min-width: 400px;
  }
}

.logo, .lead {
  height: auto !important;
  padding: 0;
  margin: 0 !important;
  font-weight: bold;
  text-transform: uppercase;
  color: #929497;
}

@media (max-height: 450px) {
  .logo {
    margin-top: 0 !important;
    width: 100px;
    height: auto;
  }
  .logo img {
    width: 100% !important;
    height: auto !important;
  }
}

.lead {
  padding-bottom: 20px;
  font-size: 1.2rem;
}
@media (max-height: 450px) {
  .lead {
    padding-bottom: 5px;
  }
}

@media (max-width: 660px) {
  .logo {
    margin-top: 5% !important;
  }
}

.input-group-addon {
  display: none;
}

.input-group {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-group .form-control {
  text-align: center;
  width: 100%;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none !important;
  border-left: 3px solid #929497 !important;
  font-weight: bold;
  transition: all 0.5s ease-in-out;
  border-radius: 2px !important;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
@media (max-height: 450px) {
  .input-group .form-control {
    height: 35px;
  }
}
.input-group .form-control:focus {
  border-left-color: #296EAA !important;
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.15);
}
.input-group .form-control::placeholder {
  color: rgba(146, 148, 151, 0.5);
}

.has-switch {
  border: none !important;
  border-radius: 2px !important;
}
.has-switch:focus {
  box-shadow: none !important;
}

.switch-success {
  background: #296EAA !important;
}
.switch-right {
  background: #929497 !important;
  color: whitesmoke !important;
}

@media (max-height: 450px) {
  .btn-auth {
    margin-top: 5px !important;
  }
}
.btn-custom-primary {
  background: #296EAA;
  border-color: #296EAA;
  border-radius: 2px !important;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}
.btn-custom-primary:hover {
  letter-spacing: 2px;
  background: #296eaa;
  border-color: #296eaa;
}
.btn-custom-primary i {
  display: none;
}
.btn-primary {
  background: #296EAA;
  border-color: #296EAA;
  border-radius: 2px !important;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  font-weight: bold;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
  letter-spacing: 1px;
}
.btn-primary:hover {
  background: #296eaa;
  border-color: #296eaa;
}
.btn-primary i {
  display: none;
}
.btn-info {
  background: rgba(146, 148, 151, 0.15);
  border-color: rgba(146, 148, 151, 0.2);
  border-radius: 2px !important;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  font-size: 0.9em;
  font-weight: bold;
  color: #929497;
  letter-spacing: 1px;
}
.btn-info:hover {
  background: #929497;
  border-color: #929497;
}
.btn-info i {
  display: none;
}

.alert {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0;
  margin-bottom: 20px;
  width: 100%;
  height: 45px;
  border: 1px solid transparent;
  border-radius: 2px !important;
  position: relative;
}
.alert-danger {
  color: #a94442;
  background-color: rgba(169, 68, 66, 0.1);
  border-left: solid 10px #a94442;
  padding-left: 10px;
  min-height: 45px;
  height: auto;
}
.alert-success .close {
  background-color: mediumseagreen !important;
}
.alert .close {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  background-color: #a94442;
  color: white !important;
  opacity: 1;
  border-radius: 20px !important;
  position: absolute;
  padding: 0 !important;
  right: 0;
  top: 0;
  transform: translateX(50%) translateY(-50%);
  font-size: 1.25em;
  line-height: 1.25em;
  text-transform: uppercase;
}

.title {
  display: block;
  width: 100%;
  text-align: center !important;
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 11;
  background: rgba(146, 148, 151, 0.75) !important;
  border-radius: 0 2px 0 0 !important;
}
@media (max-width: 660px) {
  .footer {
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px 2px 0 0 !important;
  }
}
@media (max-height: 450px) {
  .footer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
  }
}

.mask-lightbox {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.mask-lightbox img {
  display: block;
  width: 95%;
  height: auto;
}
@media screen and (orientation: landscape) {
  .mask-lightbox img {
    width: auto;
    max-height: 80%;
  }
}
.mask-lightbox-button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(-25%) translateY(25%);
  width: 15vw;
  height: 15vw;
  font-weight: bold;
  font-size: 5rem;
  border: none;
  background-color: transparent;
  color: rgba(146, 148, 151, 0.75);
}

@media (max-width: 780px) {
  .full-page-wrapper,
.inner-page {
    padding: 0 !important;
    overflow: hidden !important;
  }
}

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