*,
*:before,
*:after {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
}
.page-layout {
  height: 100%;
  justify-content: flex-start;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .page-layout {
    padding: 0;
  }
}
.page-layout,
.page-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.page-content {
  justify-content: center;
  min-height: 100vh;
}

.error {
  color: #d62b1f;
}
a {
  color: #002147;
}
a:hover {
  color: #334d6c;
}
h1 {
  font-weight: 600;
  font-size: 24px;
  line-height: 40px;
  text-align: center;
  color: #4e5467;
  margin-bottom: 25px;
}
h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 30px;
  text-align: center;
  color: #002147;
  margin-bottom: 15px;
}
.page-validation-msg {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 25px;
  margin-top: -15px;
  text-align: center;
}
.form-wrapper {
  width: 100%;
  max-width: 435px;
}
@media (min-width: 768px) {
  .form-wrapper {
    width: 435px;
  }
}
.restore-text-block {
  max-width: 90%;
  text-align: center;
  font-size: 14px;
  line-height: 26px;
  margin: -15px auto 20px auto;
}
@media (min-width: 768px) {
  .restore-text-block {
    margin-bottom: 25px;
  }
}
.reset-btn {
  margin-left: 5px;
  min-width: 48px;
}
.form-item {
  margin-bottom: 15px;
  position: relative;
}
@media (min-width: 768px) {
  .form-item {
    margin-bottom: 20px;
  }
}
.form-item label {
  display: block;
  font-size: 12px;
  line-height: 20px;
  margin-bottom: 10px;
  color: #002147;
}
.form-item .form-input {
  border: 1px solid #c7d5eb;
  border-radius: 5px;
  font-size: 14px;
  line-height: 26px;
  padding: 11px 15px;
  color: #002147;
  width: 100%;
  outline: none;
}
.form-item .form-input::-webkit-input-placeholder {
  color: #667a91;
}
.form-item .form-input::-moz-placeholder {
  color: #667a91;
}
.form-item .form-input:-ms-input-placeholder {
  color: #667a91;
}
.form-item .form-input:-moz-placeholder {
  color: #667a91;
}
.form-item .form-input:hover {
  border-color: #a7bad8;
}
.form-item .form-input:active,
.form-item .form-input:focus {
  border-color: #007878;
}
.form-item .form-input:active + .toggle-password,
.form-item .form-input:focus + .toggle-password {
  color: #002147;
}
.form-item .form-input[disabled] {
  background: #f5faff;
}
.form-item .form-input[type='password'] {
  padding-right: 50px;
}
.form-item .form-input[type='password']::-ms-reveal {
  display: none;
}
.form-item .form-input-validation-msg {
  font-size: 12px;
  line-height: 20px;
  display: none;
}
.form-item.error label,
.form-item.error input,
.form-item.error .form-input-validation-msg,
.form-item.error .toggle-password {
  color: #d62b1f;
}
.form-item.error input {
  border-color: #d62b1f;
}
.form-item-popover {
  position: absolute;
  left: 100%;
  margin-left: 18px;
  width: 222px;
  top: 0;
  opacity: 0;
  color: #4e5467;
  background: #fff;
  box-shadow: 0px 4px 22px rgba(188, 205, 227, 0.35);
  border-radius: 5px;
  padding: 10px 15px;
}
.form-input:focus ~ .form-item-popover {
  opacity: 1;
}
.form-item-popover .popover-title {
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
}
.form-item-popover .popover-body {
  font-size: 12px;
  line-height: 20px;
  margin-top: 5px;
}
.form-item .toggle-password {
  position: absolute;
  right: 0;
  width: 50px;
  height: 50px;
  padding: 15px;
  cursor: pointer;
  color: #002147;
  border: 0;
  background-color: transparent;
}
.form-item .toggle-password:active,
.form-item .toggle-password:focus,
.form-item .toggle-password:hover {
  color: #002147;
}
.form-item .toggle-password .crossed-eye {
  display: none;
}
.form-item .toggle-password.show .eye {
  display: none;
}
.form-item .toggle-password.show .crossed-eye {
  display: inherit;
}
.btn {
  height: 60px;
  border-radius: 5px;
  padding: 16px 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 28px;
  background: transparent;
  border: 1px solid #002147;
  color: #002147;
  cursor: pointer;
  text-decoration: none;
}
.btn-full-width {
  width: 100%;
  display: block;
}
.btn-text-center {
  text-align: center;
}
.btn-gap-bottom {
  margin-bottom: 15px;
}
.btn-no-border {
  border: 0;
}
.btn-sm {
  height: 45px;
  padding: 8px 10px;
  font-weight: 500;
  font-size: 14px;
  line-height: 26px;
}
.btn:hover {
  border-color: #334d6c;
  color: #334d6c;
}
.btn:active {
  border-color: #667a91;
  color: #667a91;
}
.btn[disabled] {
  border-color: #99a6b5;
  color: #99a6b5;
  cursor: not-allowed;
}
.btn-primary {
  background: #002147;
  color: #fff;
}
.btn-primary:hover {
  background: #334d6c;
  border-color: #334d6c;
  color: #fff;
}
.btn-primary:active {
  background: #667a91;
  border-color: #667a91;
  color: #fff;
}
.btn-primary[disabled] {
  background: #ccd3da;
  border-color: #ccd3da;
  color: #fff;
}
.btn-primary-outline {
  background: #fff;
  outline-offset: 0;
}
.btn-primary-outline:hover {
  background: #e9eef5;
  border-color: #334d6c;
  color: #334d6c;
}
.btn-primary-outline:active {
  background: #e9eef5;
  border-color: #667a91;
  color: #334d6c;
}
.btn-link,
.btn-linkDark {
  display: inline-block;
  border: 0;
  font-size: 14px;
  line-height: 48px;
  font-weight: 500;
  color: #007878;
  text-decoration: none;
}
.btn-link:hover,
.btn-linkDark:hover {
  color: #007878;
  text-decoration: underline;
}
.btn-link:active,
.btn-linkDark:active {
  color: #007878;
}
.btn-link[disabled],
.btn-linkDark[disabled] {
  color: rgba(51, 77, 108, 0.8);
}
.modal {
  width: 325px;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  padding: 40px 20px;
}
.modal h3 {
  margin-top: 0;
}
.modal .btn {
  width: 100%;
  margin-top: 10px;
}
.modal-backdrop {
  background-color: rgba(0, 33, 71, 0.4);
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.forgot-password {
  font-size: 12px;
  font-weight: 400;
  color: #002147;
  line-height: 20px;
}
@media (min-width: 768px) {
  .forgot-password {
    font-size: 14px;
    line-height: 26px;
  }
}
.forgot-password-row {
  display: flex;
  align-items: center;
  margin-top: -10px;
}
.split {
  position: relative;
  padding-top: 11px;
  text-align: center;
  margin-bottom: 40px;
}
.split:after {
  background: #c7d5eb;
  height: 1px;
  position: absolute;
  content: '';
  width: 100%;
  left: 0;
}
.split:before {
  width: 45px;
  height: 20px;
  background: #fff;
  position: absolute;
  left: calc(50% - 22px);
  top: 19px;
  content: '';
  z-index: 1;
}
.split span {
  color: #667a91;
  text-transform: uppercase;
  z-index: 2;
  text-align: center;
  font-size: 10px;
  line-height: 10px;
  display: block;
  position: relative;
  top: 5px;
}
.popupMask {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popupMask:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #002147;
  opacity: 0.4;
  z-index: -1;
}
.popupWrapper {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
::-webkit-scrollbar {
  width: 2px;
  height: 2px;
  margin-right: 5px;
}
::-webkit-scrollbar-track {
  background: #ccd3da;
}
::-webkit-scrollbar-thumb {
  background: #002147;
}
.popupContainer {
  border-radius: 10px;
  background: #fff;
  margin: 20px;
}
.popup {
  max-height: 90vh;
  background: #fff;
  border-radius: 10px;
  font-family: Inter, sans-serif;
  font-size: 14px;
  line-height: 26px;
  color: #002147;
  overflow-y: auto;
}
.popup.lg {
  max-width: 533px;
  padding: 30px 50px 30px 40px;
}
@media (max-width: 768px) {
  .popup.lg {
    padding: 25px;
  }
}
.popup.sm {
  max-width: 365px;
  padding: 30px;
  text-align: center;
}
.popup p {
  font-weight: 400;
  margin: 0 0 20px;
}
@media (max-width: 768px) {
  .popup p {
    margin: 0 0 15px;
    word-break: break-word;
  }
}
.title {
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px;
  display: block;
  margin-bottom: 10px;
}
ul.steps {
  padding: 0;
  margin: 0;
  list-style: none;
}
ul.steps li {
  position: relative;
  padding-left: 35px;
  font-family: Inter, sans-serif;
  font-weight: 400;
  color: #002147;
  margin-bottom: 20px;
}
ul.steps li span {
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  border: 1px solid #007878;
  background: #f3ffff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #007878;
}
ul.steps li em {
  font-style: normal;
  display: block;
  margin-bottom: 15px;
}
.qrImg {
  width: 128px;
  margin-bottom: 15px;
}
input.code {
  border-radius: 5px;
  border: 1px solid #c7d5eb;
  background: #fff;
  height: 35px;
  padding-left: 15px;
  color: #667a91;
}
input.code::placeholder {
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #58708a;
}
input.code.sm {
  width: 178px;
}
input.code.lg {
  height: 50px;
}
.w-100 {
  width: 100%;
}
.center {
  text-align: center;
}
input:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid #007878;
  border-radius: 6px;
}
span.external-provider-icon {
  position: relative;
  display: inline-flex;
}
span.external-provider-icon:before {
  display: inline-block;
  width: 21px;
  height: 20px;
  margin-right: 10px;
  top: 4px;
  position: relative;
  content: '';
}
span.azuread-icon:before {
    background: url(/img/azuread-icon.svg);
}
span.okta-icon:before {
  background: url(/img/okta-icon.svg);
}
span.pingfederate-icon:before {
  background: url(/img/pingfederate-icon.svg);
}
span.pingone-icon:before {
  background: url(/img/pingone-icon.svg);
}
span.adfs-icon:before {
  background: url(/img/adfs-icon.svg);
}
span.duo-icon:before {
  background: url(/img/duo-icon.svg);
}
span.forgerock-icon:before {
    background: url(/img/forgerock-icon.svg);
}
span.googleworkspace-icon:before {
    background: url(/img/googleworkspace-icon.svg);
}
span.onelogin-icon:before{
    background: url(/img/onelogin-icon.svg);
}
