:root {
      --page-bg: #253D6E;
      --card-bg: #fff;
      --card-border: #d8d8da;
      --text: #4f4f55;
      --muted: #777781;
      --input-border: #bbbbc0;
      --button-top: #1186c6;
      --button-bottom: #0f73af;
      --link: #253D6E;
      --divider: #dddddf;
}


@keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(18px) scale(0.95);
      }

      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .card {
        animation: none;
   }
}

* {
      box-sizing: border-box;
    }

@font-face {
  font-family: 'OpenSans';
  font-style: normal;
  font-weight: 300 700;
  font-stretch: 75% 100%;
  font-display: fallback;
  src: url('pxfont-OpenSans-Variable-Normal.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC,
    U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html, main {
  padding: 0;
  margin: 0;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: var(--page-bg);
  color: var(--text);
  font-family: "OpenSans", sans-serif;
  line-height: 1.35;
  padding: 0 24px;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("pz-nodes-bg.svg") center / cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

input,
button,
select,
textarea {
  font-family: "OpenSans", sans-serif;
}

a, a:visited {
  color: var(--link);
  text-decoration: underline;
}

div#submit_row {
  display: flex;
  gap: 3px;

}

p#submit_row_2 {
  margin: 16px 0 0 0;
  text-align: center;
  font-size: 16px;
}

/* STRUCTURE */

main {
  display: flex;
  flex-direction: column;
  height: 100vh;
  
}

article {
  width: 384px;
  max-width: 100%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(8, 17, 73, 0.14);
  overflow: hidden;
  animation: fade-up 720ms ease-out both;
  position: relative;
  z-index: 1;
  margin-top: auto;
}

.logo-container {
  border-bottom: 1px solid var(--card-border);
  padding: 28px 0 26px;
  display: grid;
  place-items: center;
}

.logo-container img {
  width: 212px;
  display:block;
}

.content-container {
  padding: 30px 40px 30px;
}

footer {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin-top: auto;
  padding-top: 24px;
  padding-bottom: 24px;
  z-index: 0;
  pointer-events: none;
  flex-shrink: 0;
 }

footer p svg {
      display: block;
      width: min(156px, 33.6vw);
      height: auto;
      margin: 0 auto;
    }

footer p {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, 0.82);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.02em;
      text-align: center;
      white-space: normal;
      line-height: 1.4;
      max-width: 100%;
      text-transform: uppercase;
}


.noFX {animation:none !important; transition:none !important}

a:focus{text-decoration:underline !important}

.field > input, body {
  padding: 0 14px;
  margin: 0;
}

body, button, input {
  font: 16px/1.5 'OpenSans',sans-serif;
  font-style: normal;
}

.content-container, form {
  flex-direction: column;
  display: flex;
}

form {
  height: 100%;
  align-items: center;
}

.logo-container,footer{ 
  flex:none;
}

#login {
  flex: 1 0 auto;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

body, input {
  font-weight: 400;
}

.content-container {
  flex-wrap: nowrap;
  flex: 1 0 auto; 
  padding-top: 44px;
}

.field {
  display: flex;
  flex-direction: column;
  padding-bottom: 16px;
  align-items: flex-start;
}

.field > input {
  width: 100%;
  height: 40px;
  border: 1px solid var(--input-border);
  border-radius: 4px;
  background: #fff;
  padding: 0 14px;
  font-size: 16px;
  color: #3d3d43;
  outline: none;
}

input:focus {
  outline: 0;
  box-shadow: inset 0 0 0 0.11rem #fff, inset 0 0 0 0.18rem #076bc9, inset 0 0 0 0.3rem #076bc91a;
}

/* style for removing eye-icon in edge browsers */
input[type="password"]::-ms-reveal{
  display: none;
}

::-webkit-input-placeholder {
  color: #767676;
  font-size: 13px;
  padding-top:3px;
  vertical-align: middle;
}

::-moz-placeholder {
  color: #767676;
  font-size: 13px;
}

:-ms-input-placeholder {
  color: #767676;
  font-size: 13px;
}

input:-webkit-autofill:focus {
  -webkit-box-shadow: inset 0 0 0 0.11rem #fff, inset 0 0 0 0.18rem #076bc9, inset 0 0 0 0.3rem #076bc91a, inset 0 0 0 1000px #fff;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
}

#version {
  color: #fff;
  font-size: 14px;
  text-shadow: none;
  font-weight: 400;
  margin: 0 0 10px;
}

#login, footer {
  text-align: center;
  position: relative;
}

#error, #info {
  margin: 4px 0;
  color: #a6020d;
  background: #ffd9db;
  padding: 14px 0;
  font-size: .9em;
  border-radius: 2px;
  border: solid 1px transparent;
}

.field > label {
  display: block;
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #001D54;
}

label:has(+ input:required)::after,
label:has(+ select:required)::after,
label:has(+ textarea:required)::after {
  content: " *";
  color: #d32f2f;
  font-weight: bold;
}

button {
  width: 100%;
  height: 48px;
  border: 1px solid #253D6E;
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  background: #253D6E;
  transition: background-color border-color 0.2s ease-out;
}

button:hover {
  background-color: #1A2E56;
  border-color: #1A2E56;
}

button.cancel {
  
}


#spnLoginFrgtPwd.loginButton:before {
  content: "";
}

#do_not_submit_row, div.progress-bar.hidden {
  display: none;
}

.progress-bar {
  width: 100%;
  height: 7px;
  background: #080c2c;
  border-radius: 4px;
  position: relative;
  margin-bottom:14px;
}

.progress-bar .current-progress {
  height: 100%;
  width: 0%;
  border-radius: 4px;
  background: #00a6a7;
}

.progress-bar > .label {
  display: block;
  margin-top: 7px;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
}

.iOS {
  display: flex;
}

.iOS .label {
  text-align: left;
  min-height: 42px;
  line-height: 30px;
  height: 30px;
  flex-grow: 1;
}

.iOS .checkbox [type=checkbox] {
  position: absolute;
  opacity: 0;
  z-index: 1;
}

.iOS .checkbox label,
.iOS .checkbox label::after,
.iOS .checkbox label::before {
  margin: 0;
  cursor: pointer;
  vertical-align: middle;
  box-sizing: border-box;
  line-height: 30px;
  height: 30px;
}

.iOS .checkbox label {
  position: relative;
  padding-left: 50px;
  display: inline-block;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
  min-height: 42px;
  font-size: 18px;
}

.iOS .checkbox label::after,
.iOS .checkbox label::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.15s;
}

.iOS .checkbox label::before {
  border-radius: 15px;
  border: 1px solid rgba(0,0,0,.2);
  background: #eee;
  width: 50px;
  margin-left: 0;
}

.iOS .checkbox label::after {
  border-radius: 15px;
  width: 30px;
  background: #fff;
  box-shadow: 0 1px 7px rgba(0,0,0,.3);
}

.iOS .checkbox [type=checkbox]:not([disabled]):active + label::before {
  background: #77cacb;
}

.iOS .checkbox [type=checkbox]:checked + label::before {
  background-color: #00a6a7;
  height: 30px;
  width: 50px;
  margin: 0;
}

.iOS .checkbox [type=checkbox]:checked + label::after {
  margin-left: 20px;
}

.iOS .checkbox [type=checkbox]:not([disabled]):focus + label::before,
.iOS input[type=checkbox]:not([disabled]):focus.checkbox + label:before,
.iOS .checkbox [type=checkbox]:not([disabled]):active + label::before,
.iOS input[type=checkbox]:not([disabled]):active.checkbox + label:before {
  box-shadow: inset 0 0 1px 2px rgba(0,0,0,.3);
}

#fingerprintAuthenticator_checkbox_row {
  margin-top: 0.5em;
}

#logsContainer, #paddingContainer {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: none;
}

#paddingContainer {
  top: 0;
  left: 0;
  padding: 10px;
  position: absolute;
  z-index: 30645;
}

#logsContainer {
  z-index: 30646;
  background-color: #fff;
  opacity: 1;
  border: 0;
  border-radius: 10px;
  position: relative;
}

#logsContainerBackground {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 30644;
  background-color: #000;
  opacity: .5;
  display: none;
}

#closeLogsContainer {
  height: 18px;
  font-size: 26px;
  font-family: Helvetica;
  font-weight: 400;
  display: block;
  line-height: 20px;
  float: right;
  margin-right: 5px;
  text-align: center;
}

#loadMoreLogs {
  width: 140px;
  margin: 10px auto;
}

.lastCell, .loadCell {
  text-align: center;
  width: 40%;
  font-weight: 400;
}

.closeCell {
  width: 20%;
}

.lastCell p {
  margin: 18px;
}

.closeCell, .lastCell, .loadCell {
  color: #525559;
}

.resultCell {
  text-align: center;
  padding: 10px 0;
  height: 100%;
}

.levelCell {
  text-align: center;
  font-weight: 400;
  color: #525559;
}

#logsTable {
  width: 100%;
  height: 100%;
}

.logsHeader {
  float: left;
}

#resultTextarea {
  width: 98%;
  height: 100%;
  overflow: scroll;
  word-break: break-all;
  font-size: 10px;
  font-family: monospace;
}

.smallButton {
  color: #000;
  font-weight: 800;
  border: 1px solid #000;
  border-radius: 5px;
  padding: 8px;
  margin: 10px;
}

.inactive {
  background-color: rgba(255, 255, 255, 0.25);
}

.logsLayoutRow {
  width: 100%;
  clear: both;
  overflow: hidden;
  position: absolute;
}

.rowBorder {
  border-top: 2px solid #525559;
  border-bottom: 2px solid #525559;
}

#logsRow2 {
  top: 55px;
  bottom: 50px;
}

#logsRow3 {
  bottom: 0;
}

.textUnderline {
  text-decoration: underline;
}

.disabled {
  background: rgba(255, 255, 255, 0.25);
}

.changePasswordText {
  font-weight: 800;
  line-height: 30px;
}

.passwordStrength {
  padding-bottom: 14px;
}

.sr-only {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  padding: 0 !important;
  border: 0 !important;
  height: 1px !important;
  width: 1px !important;
  overflow: hidden;
}

body:hover .sr-only a, body:hover .sr-only button, body:hover .sr-only input {
  display: none !important;
}

.svg-icon {
  width: 100%;
}

.logo-container svg {
  max-height: 100% !important;
}

.logo-sym svg {
  width: 150px;
  height: 60px;
  animation: aFade .4s ease-out both .3s;
}

.logo-text svg {
  width: 125px;
  height: 30px;
}

#logo-text {
  stroke: #fff;
  fill: #fff;
  stroke-dasharray: 1000;
  stroke-miterlimit: 20;
  stroke-linecap: round;
  animation: aDraw 1s ease-in;
}

#logo-infinity{
  display: block;
  width: min(156px, 33.6vw);
  height: auto;
  margin: 0 auto;
}

/* Safari and MS don't support the draw effect, using CSS workarounds for a smoother experience */
@media not all and (min-resolution:.001dpcm){ @supports (-webkit-appearance:none) {
  .logo-container{animation: aFade 1s ease-out} /* Safari detect */
}}
@media screen and (min-width: 0\0) and (-webkit-min-device-pixel-ratio: 0.75), screen and (min-width: 0\0) and (min-resolution: 72dpi) {
  #logo-text, .content-container > #login > *{animation: none !important} /* IE 9+ detect */
}
@supports (-ms-ime-align: auto) {
  #logo-text {animation: aFade 1s ease-out} /* MS Edge detect */
}