:root {
  --protected-bg: #0f172a;
  --protected-card: #ffffff;
  --protected-accent: #2563eb;
  --protected-text: #0f172a;
  --protected-muted: #64748b;
}

.protected-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
  background: radial-gradient(circle at top, #1e293b 0%, #0f172a 45%, #0b1120 100%);
  font-family: 'Inter', system-ui, sans-serif;
}

.protected-login__card {
  width: min(420px, 92vw);
  background: var(--protected-card);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.35);
}

.protected-login__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--protected-text);
}

.protected-login__subtitle {
  font-size: 13px;
  color: var(--protected-muted);
  margin-bottom: 24px;
}

.protected-login__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.protected-login__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: 14px;
  font-family: inherit;
  color: var(--protected-text);
  background: #f8fafc;
}

.protected-login__input:focus {
  outline: none;
  border-color: var(--protected-accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
  background: #fff;
}

.protected-login__button {
  border: none;
  border-radius: 999px;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
}

.protected-login__note {
  margin-top: 14px;
  font-size: 11px;
  color: var(--protected-muted);
  text-align: center;
}

.protected-project {
  min-height: 100vh;
  background: #f8fafc;
}

.protected-project__content {
  padding: 12px;
}

.protected-header {
  position: sticky;
  top: 0;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: #0f172a;
  color: #fff;
  font-family: 'Inter', system-ui, sans-serif;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.25);
}

.protected-header__left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.protected-header__title {
  font-size: 14px;
  font-weight: 700;
}

.protected-header__badge {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(59, 130, 246, 0.2);
  border: 1px solid rgba(59, 130, 246, 0.35);
}

.protected-header__logout {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: #e2e8f0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  cursor: pointer;
}

.protected-header__logout:hover {
  border-color: #fff;
  color: #fff;
}
