/* Login page specific styles */
body.login-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(24, 95, 165, 0.75) 0%, rgba(24, 95, 165, 0.65) 100%),
              url('/uploads/assets/solar-panels-bg.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}

/* Overlay for better text readability */
body.login-page::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(24, 95, 165, 0.4) 0%, rgba(24, 95, 165, 0.3) 100%);
  pointer-events: none;
}

body.login-page::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(180deg, transparent 0%, rgba(24, 95, 165, 0.2) 100%);
  pointer-events: none;
}

.login-card {
  background: var(--white);
  border-radius: 18px;
  padding: 44px 40px;
  width: 400px;
  max-width: 95vw;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  position: relative;
  z-index: 10;
  animation: slideUp .4s cubic-bezier(.22,1,.36,1);
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.login-logo {
  text-align: center;
  margin-bottom: 28px;
}
.login-logo .sun-icon {
  width: 54px; height: 54px;
  background: #185FA5;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 0 8px rgba(24, 95, 165, .15);
}
.login-logo .sun-icon svg { width: 28px; height: 28px; fill: white; }
.login-logo h1 { font-size: 20px; color: #185FA5; letter-spacing: -.3px; }
.login-logo p  { font-size: 13px; color: var(--muted); margin-top: 3px; }

.login-card .btn-primary {
  width: 100%;
  justify-content: center;
  padding: 12px;
  font-size: 15px;
  margin-top: 4px;
}

/* ── Append these lines to login.css ── */
.login-brand-img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  margin: 0 auto 8px;
}