:root{
  --vert-fonce:#35545c;
  --vert-clair:#066b82;
  --fond-nature:#f4f7f3;
  --txt:#2f383e;
}

body{
  font-family:Arial,sans-serif;background:var(--fond-nature);color:var(--txt);
  display:flex;justify-content:center;align-items:center;height:100vh;margin:0
}

.login-container{
  background:#fff;padding:2.2rem 2rem;border-radius:10px;
  box-shadow:0 2px 16px rgba(0,0,0,.10);width:300px;text-align:center
}

.login-logo{
  margin:0 auto 8px;display:flex;justify-content:center
}
.login-logo svg{width:48px;height:60px}

.login-brand{margin:0 0 4px;font-size:1.7rem;font-weight:900;letter-spacing:.3px}
.login-park{color:#0e353d}
.login-syndic{color:#bb9032}

.login-slogan{
  font-size:.78rem;font-style:italic;color:gray;margin-top: 5px;margin-bottom: 25px;
}

label{display:block;text-align:left;margin-bottom:.3rem;font-weight:700;color:var(--vert-clair)}

input{
  width:100%;padding:.5rem;margin-bottom:1.1rem;border-radius:4px;
  border:1px solid #ccc;box-sizing:border-box;font-size:1rem
}
input:focus{outline:2px solid var(--vert-clair);border-color:transparent}

button{
  width:100%;padding:.6rem;background:var(--vert-fonce);color:#fff;
  border:none;border-radius:4px;font-weight:700;cursor:pointer;font-size:1rem
}
button:hover{background:#4a7078}
button:disabled{opacity:.6;cursor:not-allowed}

#message{margin-top:.9rem;min-height:1.2em;font-size:.88rem}

/* PWA installée : garantir l'ouverture du clavier (mode standalone) */
input, textarea, select {
  -webkit-user-select: text !important;
  user-select: text !important;
  -webkit-touch-callout: default;
  touch-action: manipulation;
}

/* ── Section « Installer l'application » (intégrée à la page de connexion) ── */
.install-card{
  margin-top:1.5rem;padding:14px;border:1px solid #e5e7eb;border-radius:10px;
  background:#f9fbfa;text-align:left
}
.install-card__head{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.install-card__ico{font-size:22px;flex-shrink:0;line-height:1}
.install-card__title{font-size:.9rem;font-weight:700;color:#0e353d}
.install-card__sub{font-size:.72rem;color:#6b7280;margin-top:1px}
.install-card__btn{
  width:100%;padding:.55rem;background:#0e353d;color:#fff;border:none;border-radius:8px;
  font-weight:700;font-size:.9rem;cursor:pointer;transition:background .15s
}
.install-card__btn:hover{background:#15454d}
.install-card__help{
  margin:10px 0 0;font-size:.78rem;color:#374151;line-height:1.5;background:#fff;
  border-left:3px solid #e9c873;border-radius:0 6px 6px 0;padding:8px 10px
}
