/* ============================================
   Auth Page Styles (Login)
   Extracted from login.html inline styles
   ============================================ */

/* === Auth Logo === */
.auth-logo {
  height: 96px;
  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;
}

/* === Brand Panel Layout === */
.auth-brand-panel--styled {
  padding: 30px 30px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: calc(10vh + 50px);
}

/* === Brand Panel Inner === */
.auth-brand-inner {
  width: 100%;
  text-align: center;
}

/* === Brand Image Card === */
.auth-brand-card {
  background: rgba(255,255,255,0.08);
  border-radius: 7px;
  padding: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* === Brand Hero Image === */
.auth-brand-img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  object-fit: contain;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* === Brand Tagline === */
.auth-tagline {
  font-family: 'Caveat', cursive;
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  margin-top: 28px;
}
.auth-tagline__emphasis {
  font-weight: 500;
  color: #ffffff;
}

/* === Brand Divider === */
.auth-brand-divider {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,0.3);
  margin: 20px auto 0;
  border-radius: 1px;
}
