html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  body {
    font-family: Arial, Helvetica, sans-serif;
    background: #ffffff;
    color: #231f20;
    min-height: 100vh;
  }
  .page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .login-header {
    padding-top: 36px;
    text-align: center;
  }
  .login-header img {
    width: 270px;
    height: auto;
    border: 0;
  }
  .login-main {
    width: 494px;
    max-width: 92%;
    margin: 32px auto 0;
    flex: 1 0 auto;
  }
  .login-card {
    background: #dedede;
    padding: 34px 0 36px;
    text-align: center;
  }
  .login-card form {
    margin: 0;
  }
  .login-card .field {
    margin-bottom: 18px;
  }
  .login-card label {
    display: block;
    font-weight: bold;
    font-size: 16px;
    color: #231f20;
    margin: 0 0 8px;
  }
  .login-card input[type="text"],
  .login-card input[type="password"] {
    width: 270px;
    height: 32px;
    border: 1px solid #231f20;
    border-radius: 4px;
    background: #ffffff;
    padding: 0 10px;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
  }
  .login-card .hint {
    margin: 8px 0 0;
    font-size: 16px;
    font-weight: normal;
    color: #231f20;
  }
  #inputLogin {
    display: inline-block;
    margin-top: 22px;
    width: 108px;
    height: 48px;
    background: #6b389e;
    color: #ffffff;
    border: 0;
    border-radius: 12px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.4px;
    cursor: pointer;
  }
  #inputLogin:hover {
    background: #5c2e8a;
  }
  #inputLogin:disabled {
    opacity: 0.75;
    cursor: default;
  }
  .help {
    width: 100%;
    text-align: left;
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.45;
  }
  .help h2 {
    margin: 0 0 18px;
    font-size: 22px;
    font-weight: bold;
    color: #6b389e;
  }
  .help .block {
    margin-bottom: 22px;
  }
  .help .label {
    font-weight: bold;
    margin-bottom: 6px;
  }
  .help .hours {
    font-style: italic;
  }
  .help a {
    color: #231f20;
  }
  .login-error-title {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: bold;
    color: #6b389e;
    text-align: center;
  }
  .login-error-msg {
    margin: 0 0 20px;
    font-size: 16px;
    font-weight: bold;
    color: #c30101;
    text-align: center;
  }
  .login-error-detail {
    margin: 24px 0 0;
    font-size: 16px;
    line-height: 1.45;
    color: #231f20;
  }
  .login-error-detail p {
    margin: 0 0 12px;
  }
  #maintenanceColumn {
    color: #C30101;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    padding-top: 20px;
    width: 100%;
    text-align: left;
    overflow: hidden;
  }
  .login-footer {
    width: 494px;
    max-width: 92%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 24px 0 28px;
    margin-top: auto;
    box-sizing: border-box;
  }
  .login-footer img {
    border: 0;
    vertical-align: middle;
  }
  .copyright {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #6e6b6c;
    text-decoration: none;
  }
  .copyright a {
    color: #6e6b6c;
    text-decoration: underline;
  }
  .tooltip {
    position: relative;
    display: inline-block;
  }
  .tooltip .tooltip-content {
    display: none;
    position: absolute;
    z-index: 1;
    bottom: 120%;
  }
  .tooltip:hover .tooltip-content {
    display: block;
  }
  .tooltip table {
    width: 50%;
    border-collapse: collapse;
    margin-left: auto;
    margin-right: auto;
  }
  .tooltip th,
  .tooltip td {
    border: 1px solid black;
    text-align: center;
    padding: 4px;
    font-size: 12px;
    background-color: white;
  }
  .tooltip thead th {
    background-color: #f2f2f2;
    font-weight: bold;
  }