html, body {
    margin: 0;
    padding: 0;
    height: 100%;
  }
  body {
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    color: #000000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  a {
    color: inherit;
  }
  a:hover {
    text-decoration: underline;
  }
  
  .page {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 22px 20px 0;
  }
  
  .wrap {
    width: 100%;
    max-width: 494px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .brand {
    display: block;
    width: 362px;
    max-width: 100%;
    text-decoration: none;
    color: inherit;
    margin: 0 auto 22px;
  }
  .brand:hover {
    text-decoration: none;
  }
  .brand img {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .login-box {
    width: 100%;
    background: #dedede;
    padding: 22px 24px 24px;
    box-sizing: border-box;
    text-align: center;
  }
  .login-box label {
    display: block;
    font-size: 16px;
    font-weight: bold;
    color: #000000;
    margin-bottom: 8px;
  }
  .login-box .field {
    margin-bottom: 18px;
  }
  .login-box input[type="text"],
  .login-box input[type="password"] {
    width: 270px;
    max-width: 100%;
    height: 28px;
    padding: 2px 8px;
    border: 1px solid #000000;
    border-radius: 8px;
    background: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    box-sizing: border-box;
  }
  .login-hint {
    display: block;
    margin: -8px 0 24px;
    font-size: 16px;
    font-weight: normal;
    color: #000000;
  }
  .login-error {
    margin: 0 0 18px;
    font-size: 14px;
    font-weight: bold;
    color: #c30101;
    line-height: 1.4;
  }
  .login-box input[type="submit"] {
    min-width: 104px;
    height: 54px;
    padding: 0 22px;
    background: #033b60;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.5px;
    cursor: pointer;
  }
  .login-box input[type="submit"]:disabled {
    opacity: 0.7;
    cursor: default;
  }
  
  #maintenanceColumn {
    width: 100%;
    color: #c30101;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #fff;
    padding-top: 16px;
    box-sizing: border-box;
  }
  #maintenanceTextDiv {
    font-size: 16px;
  }
  
  .help {
    width: 100%;
    margin-top: 52px;
    text-align: left;
    color: #000000;
    font-size: 16px;
    line-height: 1.4;
  }
  .help h2 {
    margin: 0 0 16px;
    font-size: 22px;
    font-weight: bold;
    color: #033b60;
  }
  .help p {
    margin: 0 0 24px;
  }
  .help .label {
    font-weight: bold;
  }
  .help .hours {
    font-style: italic;
  }
  
  .footer {
    width: 100%;
    margin-top: 56px;
    padding: 0 0 32px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    box-sizing: border-box;
  }
  .footer img {
    display: block;
    width: 72px;
    height: auto;
  }
  .footer-copy {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    color: #5a5758;
  }
  .footer-copy a {
    color: #5a5758;
    text-decoration: underline;
  }
  
  .tooltip {
    position: relative;
    display: inline-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;
  }
  .tooltip thead th {
    background-color: #f2f2f2;
    font-weight: bold;
  }
  .tooltip tbody tr:nth-child(even) {
    background-color: #e9e9e9;
  }
  .tooltip .tooltip-content {
    display: none;
    position: absolute;
    z-index: 1;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
  }
  .tooltip:hover .tooltip-content {
    display: block;
  }
  .tooltip-content td {
    background-color: white;
  }
  
  @media (max-width: 560px) {
    .login-box {
      padding: 24px 16px 28px;
    }
  }