@charset "UTF-8";
/* add these to report headers that are not hop header
.report-section_container .report-section__content .report-section__content-title {
  background: rgba(181, 199, 218, 0.35);          
  color: #12355b;                                
  border-top: 1px solid rgba(18, 53, 91, 0.18);
  border-bottom: 1px solid rgba(18, 53, 91, 0.18);
}

*/
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Geist";
  src: url("/assets/fonts/Geist-Variable.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background-color: #e2e8f0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 400;
  color: #19222e;
}
@media (min-width: 600px) {
  body {
    background-color: #0e1726;
    background: radial-gradient(circle at top, #1a2947 0%, #13203a 35%, #0e1726 100%);
  }
}

.login-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 460px;
  color: #19222e;
  padding: 1rem 2rem;
}
.login-card > * {
  position: relative;
}
@media (max-width: 480px) {
  .login-card {
    padding: 32px 24px;
  }
}
@media (min-width: 600px) {
  .login-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(15, 23, 42, 0.04), 0 12px 32px rgba(15, 23, 42, 0.08);
  }
  .login-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 255, 255, 0));
    pointer-events: none;
  }
  .login-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 32px;
    right: 32px;
    height: 3px;
    background: linear-gradient(180deg, #2b6fe0 0%, #1657c0 100%);
    border-radius: 0 0 999px 999px;
    pointer-events: none;
  }
}

.login-button {
  width: 100%;
  margin-top: 20px;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  background-color: #1657c0;
  background: linear-gradient(180deg, #2b6fe0 0%, #1657c0 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(22, 87, 192, 0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.login-button:hover {
  background: linear-gradient(180deg, #1f63d4 0%, #11458f 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(22, 87, 192, 0.25);
}
.login-button:active {
  transform: translateY(0);
}
.login-button:focus-visible {
  outline: 3px solid rgba(22, 87, 192, 0.4);
  outline-offset: 2px;
}
.login-button:disabled {
  background: #aaa;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
}

.picker-heading {
  margin: 0 0 8px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.picker-subheading {
  margin: 0 0 32px;
  color: #6b7280;
  font-size: 0.95rem;
}

.picker-form {
  display: flex;
  flex-direction: column;
}

.picker-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.picker-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #d5dde8;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.picker-input:hover {
  border-color: #b8c5d6;
}
.picker-input:focus {
  border-color: #1657c0;
  box-shadow: 0 0 0 4px rgba(22, 87, 192, 0.12);
}

.picker-help {
  margin: 8px 0 0;
  max-width: 36ch;
  font-size: 0.8rem;
  line-height: 1.5;
  color: #6b7280;
}

.picker-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  font-size: 0.85rem;
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.25);
  border-radius: 12px;
}
.picker-error[hidden] {
  display: none;
}

.picker-footer {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

.pw-heading {
  margin: 0 0 8px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pw-form {
  display: flex;
  flex-direction: column;
}

.pw-label {
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  margin-bottom: 6px;
}
.pw-label:first-child {
  margin-top: 0;
}

.pw-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #d5dde8;
  border-radius: 12px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.pw-input:hover {
  border-color: #b8c5d6;
}
.pw-input:focus {
  border-color: #1657c0;
  box-shadow: 0 0 0 4px rgba(22, 87, 192, 0.12);
}
.pw-input::placeholder {
  color: #6b7280;
}

.info-box {
  padding: 14px 16px;
  margin-bottom: 24px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #19222e;
  background: rgba(22, 87, 192, 0.06);
  border: 1px solid rgba(22, 87, 192, 0.18);
  border-left: 4px solid #1657c0;
  border-radius: 12px;
}

.contact-box {
  padding: 14px 16px;
  margin-top: 24px;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #7a5b00;
  background: rgba(184, 134, 11, 0.08);
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-left: 4px solid #b8860b;
  border-radius: 12px;
}

.message {
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 0.85rem;
  border-radius: 12px;
}
.message.success {
  color: #0f5132;
  background: rgba(15, 81, 50, 0.08);
  border: 1px solid rgba(15, 81, 50, 0.2);
}
.message.error {
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.25);
}

.back-to-login {
  display: block;
  margin-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: #1657c0;
  text-decoration: none;
}
.back-to-login:hover {
  color: #11458f;
  text-decoration: underline;
}

.reset-intro {
  margin: 0 0 24px;
  color: #6b7280;
  line-height: 1.5;
}

.reset-requirements {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  font-size: 0.85rem;
}
.reset-requirements li {
  padding: 2px 0;
  color: #6b7280;
}
.reset-requirements li.met {
  color: #0f5132;
}
.reset-requirements li.met::before {
  content: "✓";
}
.reset-requirements li:not(.met)::before {
  content: "✗";
}

.login-stack {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.login-stack .logo-container {
  height: fit-content;
  z-index: 5;
  transition: transform 0.3s ease;
  margin-bottom: 1.5em;
}
.login-stack .logo-container .large-logo {
  display: block;
  width: 60%;
  margin: 0 auto;
  transition: all 0.3s ease;
}
.login-stack .tenant-container {
  width: 60%;
  margin: 0 auto;
  padding: 1em;
  object-fit: contain;
}
.login-stack .tenant-container h1 {
  margin-bottom: 1em;
  text-align: center;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 2.5em;
}
.login-stack .tenant-container .logo {
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.login-stack .form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: opacity 0.3s ease-out;
}
.login-stack .form.hidden {
  opacity: 0;
  pointer-events: none;
  display: none;
}
.login-stack .input_container {
  width: 100%;
  margin-top: auto;
  text-align: left;
  z-index: 1;
  position: relative;
}
.login-stack .input_container h1 {
  text-align: center;
  margin-bottom: 1em;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}
.login-stack .label,
.login-stack .input_container h1,
.login-stack .title h2,
.login-stack .tenant-container h1 {
  color: #19222e;
}
.login-stack .label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.login-stack .label[hidden], .login-stack .label.hidden {
  display: none;
  height: 0;
  margin: 0;
  padding: 0;
  visibility: hidden;
}
.login-stack .password-label {
  margin-top: 1em;
  background: none;
  text-align: left;
  border: none;
  padding: 0;
  font-size: 0.8rem;
  font-weight: 400;
  color: #1657c0;
  cursor: pointer;
}
.login-stack .password-label:hover {
  color: #11458f;
}
.login-stack .title {
  text-align: left;
  margin-bottom: 1.5em;
}
.login-stack .title h2 {
  margin: 0 0 8px;
  font-family: "Geist", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.login-stack .login-subheading {
  margin: 0;
  color: #6b7280;
  font-size: 0.95rem;
}
.login-stack .input-wrapper {
  max-height: fit-content;
  margin-top: 0.15em;
  display: grid;
  grid-template-columns: 1fr auto;
  width: 100%;
  margin-bottom: 1.5em;
}
.login-stack .input-wrapper .no_b_margin {
  margin: 0 !important;
  margin-top: 0 !important;
  grid-column: 1/3;
  grid-row: 1/2;
  z-index: 2;
  width: 100%;
}
.login-stack .input-wrapper .toggle-password {
  position: relative;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.5em;
  margin: auto 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  grid-column: 2/3;
  grid-row: 1/2;
  z-index: 99;
}
.login-stack .input-wrapper .eye {
  height: 1.5em;
  width: 1.5em;
  z-index: 99;
}
.login-stack .input-wrapper .active {
  background: #ECFBFE;
  color: #000000;
  padding: 0.5em 1em;
  border-radius: 12px;
  margin-bottom: 2em;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
.login-stack input:not([type=submit]) {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  border: 1px solid #d5dde8;
  border-radius: 12px;
  background-color: #ffffff;
  color: #19222e;
  margin-bottom: 1em;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.login-stack input:not([type=submit]):hover {
  border-color: #b8c5d6;
}
.login-stack input:not([type=submit]):focus {
  border-color: #1657c0;
  box-shadow: 0 0 0 4px rgba(22, 87, 192, 0.12);
}
.login-stack input:not([type=submit])::placeholder {
  color: #6b7280;
}
.login-stack .notification-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: center;
  pointer-events: none;
}
.login-stack .notification-container .error-popup {
  position: relative;
  background-color: rgba(180, 35, 24, 0.08);
  color: #b42318;
  border: 1px solid rgba(180, 35, 24, 0.25);
  padding: 0.75rem 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 2em;
  animation: fadeInOut 4s forwards;
  pointer-events: none;
}
.login-stack .error {
  background-color: rgba(180, 35, 24, 0.08);
  color: #b42318;
  padding: 0.5em 1em;
  margin: 0.5em 0;
  border: 1px solid rgba(180, 35, 24, 0.25);
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
  width: 100%;
  animation: fadeIn 0.5s ease-in;
}
.login-stack .password-requirements {
  padding-left: 1em;
  border-radius: 30px;
  width: 100%;
  z-index: 99;
  margin: 0 0 1.5em;
  color: #6b7280;
}
.login-stack .reset-notice p {
  margin-bottom: 1.5em;
  line-height: 1;
  font-size: 0.8rem;
  color: #6b7280;
}
.login-stack .hide-tenant-logo {
  display: none;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  10% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
    visibility: hidden;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
