/* ==========================================================
 * VabcV-ERP — Login splash (visual only)
 * Made by: Bert Rendon · 2026 · AB CleanLoop Group
 * Mounts above the existing .auth-brand on /auth/login and
 * /tenant/auth/login. NO layout/logic of the login form touched.
 * ========================================================== */

.login-logo-splash {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
  animation: logoSplashIn 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.login-logo-img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  background: #ffffff;
  border-radius: 16px;
  padding: 10px;
  box-shadow:
    0 8px 24px rgba(11, 61, 92, 0.18),
    0 2px 6px rgba(11, 61, 92, 0.08);
}

@keyframes logoSplashIn {
  from { opacity: 0; transform: scale(0.92) translateY(-8px); }
  to   { opacity: 1; transform: scale(1)    translateY(0);    }
}

@media (prefers-reduced-motion: reduce) {
  .login-logo-splash { animation: none; }
}
