body {
  font-family: Lato, sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  background-color: #f2f6fa;
  color: #363636;
}

.color-main {
  color: #004996;
}

.pwa-wrapper {
  height: 100svh;
  max-height: -webkit-fill-available;
  color: #004996;
}

.pwa-navbar {
  background-color: #fff;
  padding: 17px 10px;
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.08);
}

.pwa-navbar img {
  max-height: 40px;
  image-rendering: auto;
  image-rendering: -webkit-optimize-contrast;
}

.pwa-navbar img[src*=".svg"] {
  height: 36px;
  width: auto;
}

.pwa-language {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pwa-language a {
  padding: 2px;
  border: 2px solid transparent;
}

.pwa-language a img {
  max-height: 25px;
  width: auto;
}

.pwa-language .is-active {
  border: 2px solid #004996;
}

.pwa-content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: auto;
  justify-content: center;
  font-size: 16px;
}

.pwa-content input {
  font-size: 16px;
}

.pwa-footer .btn {
  font-size: 16px;
}

.pwa-button-confirm,
.pwa-button-cancel {
  min-height: 50px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pwa-button-confirm {
  background-color: #ef7c01;
  color: #fff;
  text-transform: uppercase;
}

.pwa-button-cancel {
  background-color: transparent;
  border: 1px solid #ef7c01;
  color: #ef7c01;
  text-transform: uppercase;
}

.pwa-small {
  font-size: 14px;
}

.pwa-login-method {
  border: 2px solid #d9e3ef;
  border-radius: 8px;
  background-color: #fff;
  color: #004996;
  text-align: center;
  height: 95%;
}

.pwa-login-method img {
  height: 55px;
}

.pwa-login-method:hover {
  text-decoration: none;
}

.pwa-steps-list {
  counter-reset: pwa-steps-counter;
  list-style: none;
  padding-left: 40px;
}

.pwa-steps-list li {
  margin: 0 0 20px 0;
  counter-increment: pwa-steps-counter;
  position: relative;
}

.pwa-steps-list li:before {
  content: counter(pwa-steps-counter);
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 20px;
  height: 20px;
  top: 3px;
  left: -35px;
  background: #009ee3;
  border-radius: 50%;
  text-align: center;
}

.pwa-form input {
  color: #002045;
}


.pwa-form label {
  color: #004798;
}

.pwa-form .form-text {
  font-size: 14px;
}

.pwa-form .form-text a {
  color: #ef7c01;
}

.pwa-password-meter div {
  width: 27px;
  height: 6px;
  background-color: #d9e3ef;
  margin-left: 2px;
  border-radius: 3px;
}

.pwa-password-meter.pwa-password-error div:nth-child(1),
.pwa-password-meter.pwa-password-error div:nth-child(2) {
  background-color: #ff6868;
}

.pwa-password-meter.pwa-password-alert div:nth-child(1),
.pwa-password-meter.pwa-password-alert div:nth-child(2),
.pwa-password-meter.pwa-password-alert div:nth-child(3),
.pwa-password-meter.pwa-password-alert div:nth-child(4) {
  background-color: #ffc768;
}

.pwa-password-meter.pwa-password-success div {
  background-color: #0cb25b;
}

@media (max-width: 480px) {
  .re-hub .pwa-password-meter {
    width: 100%;
  }
  .re-hub .pwa-password-meter div {
    width: 20%;
  }
}

