html,
body.nav-application-theme {
  width: 100%;
  height: 100%;
  margin: 0;
}

.login-page {
  width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #eef3f8;
  background-image: url("../images/login-background-light.svg");
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  padding: 24px;
}
.login-card {
  width: min(440px, 100%);
  background: #fff;
  border: 1px solid #c9d7ec;
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.16);
  padding: 28px;
}
.login-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 22px;
}
.login-title {
  font-size: 22px;
  font-weight: 800;
  color: #092f63;
  margin: 0;
}
.login-subtitle {
  margin: 4px 0 0;
  color: #53627a;
  font-size: 13px;
}
.login-field {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
}
.login-field label {
  font-weight: 700;
  color: #0f2746;
}
.login-field input {
  border: 1px solid #bed0ec;
  border-radius: 10px;
  padding: 11px 12px;
  font-size: 15px;
}
.login-button {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 12px 16px;
  background: #0b63ce;
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(11, 99, 206, 0.22);
}
.login-version {
  margin-top: 12px;
  text-align: center;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.login-alert {
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-weight: 700;
  display: none;
}
.login-alert.error {
  display: block;
  color: #9b1c1c;
  background: #fff0f0;
  border: 1px solid #fecaca;
}
.login-alert.success {
  display: block;
  color: #166534;
  background: #ecfdf3;
  border: 1px solid #bbf7d0;
}
