/* common.css — login / hero header */

.login-hero-header {
  width: 100%;
  text-align: center;
  margin-top: 2.5rem;
  margin-bottom: .0rem;
  z-index: 2;
}

.login-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  text-align: center;
}

/* Brand title on dark background */
.brand-title {
  font-family: 'Montserrat', arial, sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: #f5f7fb;              /* light text for dark bg */
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  text-shadow: none;
  animation: none;
  text-transform: none;
  text-align: center;
}

/* Tagline / category line */
.login-hero-center h2 {
  font-size: 1.1rem;
  color: #c3ccd8;              /* muted light gray */
  margin: 0.25rem 0 1.25rem;
}

/* Read-only fields still look intentional */
input[readonly] {
  background: rgba(255,255,255,0.12);
  color: #e6edf3;
  border: 1px solid rgba(255,255,255,0.25);
  cursor: default;
}

/* Universal tagline styling — stronger than global h2 rules */
.login-column .brand-tagline {
  font-family: 'Montserrat', arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: #c3ccd8;
  margin: 0.25rem 0 1.25rem;
  text-align: center;
  font-style: italic;
  opacity: 0.95;
}

.login-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.login-page-layout {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  background: var(--background-gradient, #000);
  position: relative;
}
