/* ═══════════════════════════════════════════════════
   LOGIN — Styles isolés pour la section #LS
   Règles globales dupliquées avec sélecteur #LS pour
   permettre une modification indépendante de la page.
═══════════════════════════════════════════════════ */
body {

}
/* --- Reset partagé scopé sur #LS --- */
#LS *,
#LS *::before,
#LS *::after {
  box-sizing: border-box;
  /* margin: 0; */
  /* padding: 0; */
}

/* --- Conteneur plein écran --- */
#LS {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  background: #060615 !important;
}

/* --- Fond sombre --- */
.ls-bg {
  position: relative;
  flex: 1 1  auto;
  height: 100%;
  background: #060615 url("/assets/login/neovisia-bg.webp") no-repeat center center;
  background-size: cover;
  z-index: 0;
}

/* --- SVG terrain de foot (fond décoratif) --- */
.ls-field-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .06;
}

/* --- Orbes lumineux animés --- */
.ls-glow-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(249,252,51,.06), transparent 60%);
  top: -10%;
  left: -5%;
  animation: ls-pulse 4s ease-in-out infinite;
}

.ls-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(44,36,135,.2), transparent 60%);
  bottom: -10%;
  right: -5%;
  animation: ls-pulse 4s ease-in-out infinite 2s;
}

/* --- Lignes diagonales décoratives --- */
.ls-line-1 {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249,252,51,.15), transparent);
  transform: rotate(-15deg);
}

.ls-line-2 {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(44,36,135,.3), transparent);
  transform: rotate(20deg);
}

.ls-line-3 {
  position: absolute;
  bottom: 25%;
  left: 30%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(249,252,51,.1), transparent);
  transform: rotate(-25deg);
}

/* --- Carte centrale --- */
.ls-card {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 39rem;
  width: 90%;
  padding: max(4vh,2rem) max(5.8vw,3rem);
  background: rgb(10 11 29);
  box-shadow: 0 40px 80px rgba(0,0,0,.6);
  height: 100%;
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  /* text-align: center; */
  /* justify-content: center; */
  overflow: auto;
}

.ls-card-inner {
  text-align: center;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  max-width: 27rem;
}

/* --- Logo --- */
.ls-logo {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
  padding: 8px;
  margin: 0 auto 16px;
}
.ls-logo-olfp {
  width: 40%;
  height: auto;
  margin-bottom: 16px;
  object-fit: contain;
  padding: 8px;
  margin: 0 auto 1.5rem;
}

/* --- Nom du club --- */
.ls-title {
  font-family: 'Bebas Neue', sans-serif;
  color: rgb(249,252,51);
  font-size: 45px;
  margin: 0;
  letter-spacing: 4px;
}

/* --- Sous-titre --- */
.ls-subtitle {
  color: rgba(255,255,255,.35);
  margin: 4px 0;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* --- Citation --- */
.ls-quote {
  color: rgba(249,252,51,.3);
  margin: 0 0 20px;
  font-size: 13px;
  font-style: italic;
}

/* --- Séparateur --- */
.ls-divider {
  width: 50px;
  height: 3px;
  /* background: linear-gradient(90deg, rgb(44,36,135), rgb(249,252,51)); */
  background: #8bbe29;
  margin: 0 auto 20px;
  border-radius: 2px;
}

/* --- Champs texte / mot de passe --- */
.ls-input {
  width: 100%;
  padding: 14px 18px;
  margin: 5px 0;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  transition: border-color .3s;
}

.ls-input:focus {
  border-color: rgba(249,252,51,.5);
  outline: none;
}

/* --- Bouton connexion --- */
.ls-btn {
  width: 100%;
  padding: 16px;
  margin-top: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg,#8bbe29, #8bbe29);
  color: #0a0b1d;
  font-weight: 800;
  font-size: 17px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 1.5px;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 0 4px 20px rgba(249,252,51,.15);
}

.ls-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(249,252,51,.25);
}

/* --- Message d'erreur --- */
.ls-error {
  color: #ef4565;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* --- Animation pulse (glows) --- */
@keyframes ls-pulse {
  0%, 100% {
    opacity: .6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}


@media (max-width: 1200px) {
  #LS {
    justify-content: center;
  }

  .ls-bg {
    display: none;
  }

  .ls-card {
    /* height: auto; */
    /* border-radius: 1.5rem; */
    
  /* border: 1px solid rgba(249,252,51,.12); */
  max-width: 100%;
  width: 100%;

  }
}
