
* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: Arial, Helvetica, sans-serif;
  color: #000;
  min-height: 100%;
}

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

.login-page {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  padding: 48px 3px 0px;
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-logo {
  display: block;
  width: 362px;
  max-width: 100%;
  text-decoration: none;
  color: inherit;
  margin: 0 auto 44px;
}
}

.login-logo img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.login-logo > a > img {
  display: block;
  width: 100%;
  height: auto;
  border: 0;
}

.login-error {
  width: 100%;
  color: #c30101;
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  line-height: 1.45;
  margin: 0 0 18px;
}

.login-error p {
  margin: 0 0 8px;
}

.login-error-details {
  width: 100%;
  margin: 22px 0 0;
  font-size: 14px;
  font-weight: normal;
  color: #000;
  text-align: left;
  line-height: 1.45;
}

.login-error-details a {
  color: #039;
}

.login-box {
  width: 100%;
  background: #dedede;
  padding: 22px 24px 48px;
  box-sizing: border-box;
  text-align: center;
}

.login-box label {
  display: block;
  font-weight: bold;
  font-size: 16px;
  color: #000;
  margin: 0 0 8px;
}

.login-box input[type="text"],
.login-box input[type="password"] {
  display: block;
  width: 100%;
  max-width: 280px;
  margin: 0 auto 18px;
  padding: 7px 10px;
  font-size: 15px;
  font-family: Arial, Helvetica, sans-serif;
  border: 1px solid #333;
  border-radius: 8px;
  background: #fff;
}

.password-hint {
  display: block;
  font-size: 16px;
  font-weight: normal;
  color: #000;
  margin: -8px 0 22px;
}

.login-box input[type="submit"] {
  background-color: #244ba6;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 48px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  min-width: 160px;
}

.login-box input[type="submit"]:hover {
  background-color: #1e3f8c;
}

.login-box input[type="submit"]:disabled {
  background-color: #7a8fb8;
  cursor: default;
}

#maintenanceColumn {
  color: #C30101;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  padding-top: 22px;
  width: 100%;
  text-align: left;
  overflow: hidden;
}

.login-help {
  width: 100%;
  text-align: left;
  margin-top: 52px;
  font-size: 16px;
  line-height: 1.45;
}

.login-help h2 {
  color: #204394;
  font-size: 20px;
  font-weight: bold;
  margin: 0 0 16px;
}

.login-help p {
  margin: 0 0 12px;
}

.login-help .label {
  font-weight: bold;
}

.login-help .hours {
  font-style: italic;
}

.login-footer {
  width: 100%;
  margin-top: 70px;
  padding: 0 0 32px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  box-sizing: border-box;
}

.login-footer img {
  display: block;
}

.login-footer .copyright {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: normal;
  color: #555;
  margin: 0;
}

.login-footer .copyright a {
  color: #555;
  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%;
}

.tooltip:hover .tooltip-content {
  display: block;
}

.tooltip-content td {
  background-color: white;
}

a {
  color: inherit;
}