@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");
[x-cloak] {
  display: none !important;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.hidden {
  display: none !important;
}

.translucent {
  opacity: 0 !important;
}

.full-width {
  max-width: 100% !important;
  width: 100% !important;
}

.full-height {
  max-height: 100% !important;
  height: 100% !important;
}

.no-padding {
  padding: 0 !important;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  width: 100%;
  min-height: 100vh;
  overflow-y: scroll;
  scrollbar-gutter: stable;
  color: #1e3a8a;
  background-color: #f3f4f6;
}

.mb-5 {
  margin-bottom: 5px;
}

.mt-5 {
  margin-top: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mt-10 {
  margin-top: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mt-15 {
  margin-top: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mt-25 {
  margin-top: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mt-30 {
  margin-top: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mt-35 {
  margin-top: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mt-45 {
  margin-top: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mt-50 {
  margin-top: 50px;
}

h1, h2, h3, h4, h5, h6 {
  color: #1e3a8a;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

h2 {
  font-size: 1.5rem;
  padding-bottom: 0.15rem;
}

h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #374151;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: #003e75;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}
a:hover {
  color: #1d4ed8;
}
a:focus {
  outline: 2px solid #003e75;
  outline-offset: 2px;
}

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
li:last-child {
  margin-bottom: 0;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
}
.list-unstyled li {
  position: relative;
  padding-left: 1.5rem;
}
.list-unstyled li:before {
  content: "•";
  color: #1d4ed8;
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0;
}

strong {
  font-weight: 600;
  color: #1f2937;
}

em {
  font-style: italic;
  color: #374151;
}

code {
  background: #f3f4f6;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.9em;
  color: #1f2937;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: #6b7280;
}

.text-small {
  font-size: 0.875rem;
}

.container-auth-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #f9fafb;
}

.auth-shell__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 56px;
  padding: 0 1.5rem;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.auth-shell__brand {
  display: inline-flex;
  align-items: center;
}
.auth-shell__brand img {
  height: 30px;
  width: auto;
  display: block;
}

.auth-shell__nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.875rem;
}

.auth-shell__env {
  display: inline-flex;
  align-items: center;
  padding: 0.1875rem 0.5rem;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
}
.auth-shell__env--local {
  background: #fffbeb;
  color: #d97706;
}
.auth-shell__env--dev {
  background: #eff6ff;
  color: #2563eb;
}

.auth-shell__nav-link {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.auth-shell__nav-link:hover {
  color: #003e75;
}
.auth-shell__nav-link--active {
  color: #003e75;
}

.auth-shell__user {
  color: #6b7280;
  font-weight: 500;
  padding-left: 1rem;
  border-left: 1px solid #e5e7eb;
}

.auth-shell__logout {
  color: #4b5563;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s ease;
}
.auth-shell__logout:hover {
  color: #ef4444;
}

.auth-shell__content {
  flex: 1 1 auto;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.auth-shell__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #e5e7eb;
  background: #ffffff;
}
.auth-shell__footer p {
  margin: 0;
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
}

@media only screen and (max-width: 719.9px) {
  .auth-shell__topbar {
    padding: 0 1rem;
    gap: 1rem;
  }
  .auth-shell__nav {
    gap: 0.875rem;
    font-size: 0.8125rem;
  }
  .auth-shell__user {
    display: none;
  }
  .auth-shell__content {
    padding: 1.5rem 1rem;
  }
}
.alert {
  padding: 1rem 2.5rem 1rem 1.25rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  margin-bottom: 1rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 1;
  transition: opacity 0.3s ease-out;
  width: 100%;
  position: relative;
}
.alert > i {
  flex-shrink: 0;
  font-size: 1.125rem;
  margin-top: 0.125rem;
}
.alert .alert-content {
  flex: 0 1 auto;
  color: inherit;
}
.alert .alert-content__title {
  font-weight: 700;
  color: inherit;
}
.alert .alert-dismiss {
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.2s;
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
}
.alert .alert-dismiss:hover {
  opacity: 1;
}

.alert-info {
  background-color: rgb(199.75, 244, 250.75);
  border-color: #22d3ee;
  color: #0891b2;
}
.alert-info i {
  color: #06b6d4;
}

.alert-success {
  background-color: rgb(224.9721, 249.5253, 233.9307);
  border-color: #4ade80;
  color: #16a34a;
}
.alert-success i {
  color: #22c55e;
}

.alert-warning {
  background-color: rgb(253.7444, 234.9104, 186.2559);
  border-color: #fbbf24;
  color: #d97706;
}
.alert-warning i {
  color: #ffa100;
}

.alert-danger {
  background-color: rgb(253.9899, 234.5094, 234.5094);
  border-color: #f87171;
  color: #dc2626;
}
.alert-danger i {
  color: #ef4444;
}

.alert-no-border {
  border: 0;
}

.alert-fading {
  opacity: 0;
}

.alert-sm {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}
.alert-sm i {
  font-size: 0.875rem;
}

.alert-lg {
  padding: 1.5rem 1.75rem;
  font-size: 1rem;
}
.alert-lg i {
  font-size: 1.5rem;
}

.alert-dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  padding: 1rem;
  transition: background-color 0.3s ease;
  backdrop-filter: blur(0px);
}
.alert-dialog-overlay--visible {
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}
.alert-dialog-overlay--visible .alert-dialog {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.alert-dialog {
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
  border-radius: 1.5rem;
  padding: 2.5rem 2rem 2rem;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
  opacity: 0;
  transform: scale(0.9) translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.alert-dialog__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
}
.alert-dialog__icon::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: alertDialogIconPulse 2s ease-in-out infinite;
}
.alert-dialog__icon i {
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}
.alert-dialog__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}
.alert-dialog__message {
  font-size: 1rem;
  color: #6b7280;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.alert-dialog__action-container {
  display: flex;
  justify-content: center;
}
.alert-dialog__action-container--confirm {
  gap: 0.75rem;
}
.alert-dialog__cancel {
  min-width: 100px;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
}
.alert-dialog__cancel:hover {
  transform: translateY(-2px);
}
.alert-dialog__cancel:active {
  transform: translateY(0);
}
.alert-dialog__action {
  min-width: 140px;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(0, 62, 117, 0.3);
}
.alert-dialog__action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 62, 117, 0.4);
}
.alert-dialog__action:active {
  transform: translateY(0);
}
.alert-dialog__redirecting {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  color: #6b7280;
  font-size: 0.9375rem;
  font-weight: 500;
  min-height: 48px;
}
.alert-dialog__redirecting .spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top-color: #003e75;
  border-radius: 50%;
  animation: alertDialogSpin 0.8s linear infinite;
}
.alert-dialog--loading .alert-dialog__icon::before {
  animation: none;
}
.alert-dialog--success .alert-dialog__icon {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
}
.alert-dialog--success .alert-dialog__icon::before {
  border-color: rgba(34, 197, 94, 0.3);
}
.alert-dialog--success .alert-dialog__icon i {
  color: #22c55e;
}
.alert-dialog--danger .alert-dialog__icon {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(239, 68, 68, 0.05) 100%);
}
.alert-dialog--danger .alert-dialog__icon::before {
  border-color: rgba(239, 68, 68, 0.3);
}
.alert-dialog--danger .alert-dialog__icon i {
  color: #ef4444;
}
.alert-dialog--warning .alert-dialog__icon {
  background: linear-gradient(135deg, rgba(255, 161, 0, 0.15) 0%, rgba(255, 161, 0, 0.05) 100%);
}
.alert-dialog--warning .alert-dialog__icon::before {
  border-color: rgba(255, 161, 0, 0.3);
}
.alert-dialog--warning .alert-dialog__icon i {
  color: #ffa100;
}
.alert-dialog--info .alert-dialog__icon {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.15) 0%, rgba(6, 182, 212, 0.05) 100%);
}
.alert-dialog--info .alert-dialog__icon::before {
  border-color: rgba(6, 182, 212, 0.3);
}
.alert-dialog--info .alert-dialog__icon i {
  color: #06b6d4;
}

@keyframes alertDialogIconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.5;
  }
}
@keyframes alertDialogSpin {
  to {
    transform: rotate(360deg);
  }
}
.progress-bar {
  opacity: 0.2;
  transition: opacity 0.3s ease;
}
.progress-bar--active {
  opacity: 1;
}
.progress-bar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.progress-bar__label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #374151;
}
.progress-bar__percentage {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #003e75;
}
.progress-bar__track {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: hidden;
}
.progress-bar__bar {
  height: 100%;
  background: #003e75;
  border-radius: 3px;
  transition: width 0.3s ease;
  width: 0;
}
.progress-bar--success .progress-bar__bar {
  background: #22c55e;
}
.progress-bar--success .progress-bar__percentage {
  color: #22c55e;
}
.progress-bar--warning .progress-bar__bar {
  background: #ffa100;
}
.progress-bar--warning .progress-bar__percentage {
  color: #ffa100;
}
.progress-bar--danger .progress-bar__bar {
  background: #ef4444;
}
.progress-bar--danger .progress-bar__percentage {
  color: #ef4444;
}
.progress-bar--info .progress-bar__bar {
  background: #06b6d4;
}
.progress-bar--info .progress-bar__percentage {
  color: #06b6d4;
}
.progress-bar--sm .progress-bar__label,
.progress-bar--sm .progress-bar__percentage {
  font-size: 0.75rem;
}
.progress-bar--sm .progress-bar__track {
  height: 4px;
}
.progress-bar--lg .progress-bar__label,
.progress-bar--lg .progress-bar__percentage {
  font-size: 0.9375rem;
}
.progress-bar--lg .progress-bar__track {
  height: 8px;
}

.page-landing-home main {
  display: block;
  padding: 0;
  min-height: 100vh;
}
.page-landing-home .login-split {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  min-height: 100vh;
  background: #f9fafb;
}
@media only screen and (max-width: 899.9px) {
  .page-landing-home .login-split {
    grid-template-columns: 1fr;
  }
}
.page-landing-home .login-split__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  padding: 40px 56px;
}
@media only screen and (max-width: 899.9px) {
  .page-landing-home .login-split__left {
    min-height: 60vh;
    padding: 32px 24px;
  }
}
.page-landing-home .login-split__logo {
  align-self: flex-start;
  width: auto;
  height: 28px;
}
.page-landing-home .login-split__identity {
  display: flex;
  flex-direction: column;
}
.page-landing-home .login-split__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  margin-bottom: 24px;
  background: rgba(0, 62, 117, 0.06);
  border-radius: 999px;
  color: #003e75;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.page-landing-home .login-split__eyebrow-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ef4444;
}
.page-landing-home .login-split__title {
  margin: 0;
  color: #003e75;
  font-size: clamp(44px, 7vw, 72px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.page-landing-home .login-split__title-dot {
  margin: 0 0.1em;
  color: #ef4444;
}
.page-landing-home .login-split__tagline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.page-landing-home .login-split__tagline-rule {
  width: 48px;
  height: 1px;
  background: #003e75;
}
.page-landing-home .login-split__tagline-arrow {
  flex-shrink: 0;
}
.page-landing-home .login-split__tagline-text {
  color: #6b7280;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.page-landing-home .login-split__stats {
  display: flex;
  gap: 40px;
  color: #6b7280;
  font-size: 12px;
}
.page-landing-home .login-split__stat-value {
  color: #003e75;
  font-family: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.page-landing-home .login-split__stat-label {
  margin-top: 2px;
}
.page-landing-home .login-split__right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 48px;
  overflow: hidden;
  background: #003e75;
}
@media only screen and (max-width: 899.9px) {
  .page-landing-home .login-split__right {
    min-height: auto;
    padding: 32px 24px;
  }
}
.page-landing-home .login-split__decor {
  position: absolute;
  top: -40px;
  right: -40px;
  z-index: 0;
  opacity: 0.12;
  pointer-events: none;
}
.page-landing-home .login-split__signin {
  position: relative;
  z-index: 1;
  max-width: 360px;
}
.page-landing-home .login-split__signin-eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.page-landing-home .login-split__signin-title {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.page-landing-home .login-split__signin-desc {
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.55;
}
.page-landing-home .login-split__security {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}
.page-landing-home .login-split__support {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}
.page-landing-home .login-split__support a {
  color: #ffffff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.page-landing-home .ms-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 16px 20px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  color: #003e75;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.page-landing-home .ms-button:hover {
  background: #f9fafb;
  box-shadow: 0 2px 10px rgba(0, 62, 117, 0.08);
  color: #003e75;
  text-decoration: none;
}
.page-landing-home .ms-button:focus-visible {
  outline: 2px solid #003e75;
  outline-offset: 2px;
}
.page-landing-home .ms-button--loading {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.page-landing-home .ms-button__logo {
  flex-shrink: 0;
}

.page-dashboard-home .dashboard-placeholder__heading {
  margin: 0 0 0.5rem 0;
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: -0.015em;
  color: #172554;
}
.page-dashboard-home .dashboard-placeholder__heading strong {
  font-weight: 600;
  color: #003e75;
}
.page-dashboard-home .dashboard-placeholder__subtitle {
  margin: 0;
  font-size: 0.9375rem;
  color: #6b7280;
}