/**
 * LSL50 Admin Login — First impression polish
 */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap");

.lsl-admin-login {
  --login-navy: #061b3b;
  --login-gold: #d7a72f;
  --login-muted: #64748b;
  --login-line: #e2e8f0;
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(215, 167, 47, 0.15), transparent),
    linear-gradient(165deg, #041428 0%, #0a2548 42%, #eef1f6 42%, #eef1f6 100%);
}

.lsl-admin-login-card {
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid var(--login-line);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 24px 64px rgba(6, 27, 59, 0.22);
}

.lsl-admin-login-brand {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.lsl-admin-login-brand .lsl-brand-edition {
  flex-basis: 100%;
  margin-left: 60px;
  margin-top: -4px;
}

.lsl-admin-login-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #061b3b, #0a2548);
  border: 2px solid rgba(215, 167, 47, 0.4);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
  color: #fde68a;
  letter-spacing: 0.06em;
}

.lsl-admin-login-brand strong {
  display: block;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  color: var(--login-navy);
  letter-spacing: -0.02em;
}

.lsl-admin-login-sub {
  color: var(--login-muted);
  font-size: 14px;
  margin: 0 0 24px;
  line-height: 1.45;
}

.lsl-admin-login label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--login-muted);
  margin-bottom: 6px;
}

.lsl-admin-login input {
  width: 100%;
  border: 1px solid var(--login-line);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;
  margin-bottom: 16px;
  min-height: 48px;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.lsl-admin-login input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.lsl-admin-login button[type="submit"] {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px;
  min-height: 48px;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  background: linear-gradient(180deg, #061b3b, #0a2548);
  color: #fff;
  box-shadow: 0 8px 20px rgba(6, 27, 59, 0.25);
  transition: transform 0.12s, box-shadow 0.15s;
}

.lsl-admin-login button[type="submit"]:hover {
  box-shadow: 0 12px 28px rgba(6, 27, 59, 0.32);
}

.lsl-admin-login button[type="submit"]:active {
  transform: scale(0.98);
}

.lsl-admin-login-alert {
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 16px;
  font-size: 13px;
  line-height: 1.45;
}

.lsl-admin-login-alert.warn {
  background: #fffbeb;
  border: 1px solid #fcd34d;
  color: #92400e;
}

.lsl-admin-login-foot {
  font-size: 12px;
  color: var(--login-muted);
  margin-top: 20px;
  line-height: 1.5;
}

.lsl-admin-login-foot code {
  font-size: 11px;
  background: #f1f5f9;
  padding: 2px 6px;
  border-radius: 4px;
}
