/* Login card (page spécifique login) */
.login-card {
  background: white;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  width: 100%;
  max-width: 360px;
  text-align: center;
}

.login-card h2 {
  margin-bottom: 10px;
  font-weight: 900;
  color: #1e222d;
  letter-spacing: -1px;
}

.login-card p {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 30px;
}

/* Auth overlay (si tu le réactives dans certaines pages) */
#auth-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--content-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.login-layout{
  background-color: var(--content-bg);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-card--wide{
  width: 100%;
  max-width: 400px;
}

.login-title{
  text-align: center;
  color: var(--text-main);
  font-weight: 800;
  letter-spacing: -1px;
}

.login-subtitle{
  text-align: center;
  color: #64748b;
  margin-bottom: 30px;
}



