.staff-login-page,
.staff-dashboard-page {
  background: #f4f6f8;
}

.staff-login-hero,
.staff-dashboard-hero {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(31, 23, 68, .96), rgba(41, 50, 131, .92)),
    url('/img/logo-donihue.png') center right 8% / min(36vw, 420px) auto no-repeat;
}

.staff-login-panel,
.staff-dashboard-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: center;
}

.staff-login-copy h1,
.staff-dashboard-panel h1 {
  margin: 0 0 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.08;
  color: white;
}

.staff-login-copy p,
.staff-dashboard-panel p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, .78);
  font-size: .98rem;
  line-height: 1.65;
}

.staff-login-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
}

.staff-login-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--cyan);
}

.staff-login-card {
  padding: 28px;
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 48px rgba(10, 14, 36, .28);
}

.staff-login-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #f4f6f8;
  color: var(--blue);
  font-size: 1.65rem;
  margin-bottom: 18px;
}

.staff-login-card h2 {
  margin: 0 0 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--navy);
}

.staff-login-card p {
  margin: 0 0 20px;
  color: #596174;
  font-size: .88rem;
  line-height: 1.55;
}

.staff-office-button,
.staff-logout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--orange);
  color: white;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}

.staff-office-button:hover,
.staff-logout-button:hover {
  background: var(--cyan);
  color: white;
  transform: translateY(-2px);
}

.staff-login-alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  background: #fff0ec;
  color: #9b321e;
  font-size: .82rem;
  line-height: 1.45;
}

.staff-dashboard-panel {
  grid-template-columns: minmax(0, 1fr) 220px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}

@media (max-width: 900px) {
  .staff-login-panel,
  .staff-dashboard-panel {
    grid-template-columns: 1fr;
  }

  .staff-dashboard-panel {
    padding: 24px;
  }
}
