/* ============================================
   Auth Page Styles (Login)
   ============================================ */

/* === Auth Logo === */
.auth-logo {
  height: 82px;
  margin-bottom: 24px;
}

/* === Password Field Wrapper === */
.password-field {
  position: relative;
}

/* === Password Toggle Button === */
.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}
.password-toggle:hover {
  color: var(--text-secondary);
}

/* === Sign In Button Link Reset === */
.btn--signin {
  text-decoration: none;
}

/* === Auth Help Text === */
.auth-help-text {
  text-align: center;
}

/* === Full Image Hero Panel === */
.auth-brand-panel--hero {
  background: #0f172a url('../../img/Login.jpg') center center / contain no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}
.auth-brand-panel--hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 50%, rgba(15,23,42,0.6) 100%);
  pointer-events: none;
}

/* Subtle bottom gradient for text readability */
.auth-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15,23,42,0) 0%,
    rgba(15,23,42,0) 60%,
    rgba(15,23,42,0.7) 85%,
    rgba(15,23,42,0.95) 100%
  );
  pointer-events: none;
}

/* Content pinned to bottom */
.auth-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 48px 44px;
  text-align: center;
}

/* Tagline */
.auth-hero-tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255,255,255,0.9);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}

/* Powered by */
.auth-hero-powered {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
