
.auth-left.auth-left-lecturer {
  background-image:
    linear-gradient(135deg,
      rgba(2, 2, 26, 0.90) 0%,
      rgba(8, 6, 37, 0.80) 45%,
      rgba(2, 2, 26, 0.92) 100%),
    url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?auto=format&fit=crop&w=1400&q=80');
}

/* Tighten the logo on this page — no separate icon bubble */
.auth-left.auth-left-lecturer .auth-brand {
  margin-bottom: 3rem;
}

.auth-left.auth-left-lecturer .auth-brand-name {
  font-size: 1.35rem;
}

/* ── Role Badge ─────────────────────────────────────────────── */
.auth-role-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0.35rem 0.85rem;
  margin-bottom: 1rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-hover);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.auth-role-badge i {
  font-size: 0.82rem;
  opacity: 0.85;
}

/* ── Feature List ───────────────────────────────────────────── */
.auth-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-bottom: 2.8rem;
}

.auth-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.4;
}

/* Icon circle */
.auth-feature i {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 0.82rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.auth-feature:hover i {
  background: var(--accent-mid);
  box-shadow: 0 0 12px var(--accent-glow-lg);
}

.auth-feature:hover {
  color: var(--text-primary);
}

/* ── Info Note ──────────────────────────────────────────────── */
.info-note {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.8rem 1rem;
  margin-bottom: 1.3rem;
  background: rgba(2, 184, 240, 0.06);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--text-secondary);
}

.info-note i {
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.88rem;
  color: var(--accent);
  opacity: 0.8;
}

.info-note a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--border-hover);
  font-weight: 600;
  transition: opacity 0.2s;
}

.info-note a:hover {
  opacity: 0.8;
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 680px) {
  .auth-role-badge {
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
  }

  .info-note {
    font-size: 0.8rem;
  }

  .auth-feature {
    font-size: 0.85rem;
  }

  .auth-feature i {
    width: 30px;
    height: 30px;
    font-size: 0.78rem;
  }
}