.suite-header {
  min-height: 72px;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.suite-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-wrap: wrap;
}

.suite-nav a,
.local-nav a {
  color: #c5d8ed;
  text-decoration: none;
  padding: 8px 11px;
  border: 1px solid #174975;
  border-radius: 5px;
  background: #0a2038;
  font-size: 13px;
  font-weight: 700;
}

.suite-nav a:hover,
.suite-nav a.active,
.local-nav a:hover {
  border-color: #34c8ff;
  background: #0b2b4d;
  color: #34c8ff;
}

.session-action { flex: 0 0 auto; }
.session-action button { margin: 0; padding: 9px 15px; }

.local-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  max-width: 1400px;
  margin: 0 auto;
  padding: 9px 24px;
  border-bottom: 1px solid rgba(52,200,255,.16);
  background: rgba(7,20,38,.88);
}

.local-nav a {
  padding: 6px 9px;
  background: transparent;
  border-color: transparent;
  font-size: 12px;
}

.login-shell {
  width: min(1088px, 100%);
  margin: 4px auto 0;
}

.login-banner {
  overflow: hidden;
  border: 1px solid rgba(52,200,255,.3);
  border-radius: 6px;
  background: #061426;
  box-shadow: 0 18px 56px rgba(0,0,0,.34);
}

.login-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.login-card {
  margin-top: 18px;
  padding: 24px;
  border: 1px solid #174975;
  border-radius: 6px;
  background: linear-gradient(145deg,rgba(10,27,49,.94),rgba(4,14,29,.96));
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
}

.login-card h2 { margin-bottom: 4px; }
.login-card > .muted { margin: 0; }
.login-form { margin-top: 12px; }
.login-form label:first-child { margin-top: 0; }
.login-form button { margin-top: 18px; }

@media (max-width: 1050px) {
  .suite-header { position: static; align-items: flex-start; flex-direction: column; }
  .suite-nav { justify-content: flex-start; }
  .session-action { position: absolute; right: 18px; top: 14px; }
  .local-nav { padding: 9px 16px; }
}

@media (max-width: 560px) {
  .suite-nav { width: 100%; }
  .session-action { position: static; }
  .brand em { display: none; }
  .login-card { padding: 18px; }
}
