/* =========================
   Login Form
   ========================= */
.login_wrapper {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

.login_wrapper h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.login_wrapper label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #555;
}

.login_wrapper input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.login_wrapper button {
  width: 100%;
  padding: 12px;
  margin-top: 25px;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login_wrapper button:hover {
  background-color: #005fa3;
}

.login_wrapper p {
  text-align: center;
  margin-top: 20px;
}

.login_wrapper a {
  color: #0077cc;
  text-decoration: none;
}

.login_wrapper a:hover {
  text-decoration: underline;
}

/* =========================
   Mobile
   ========================= */
/* =========================
   Login Form
   ========================= */
.login_wrapper {
  max-width: 400px;
  margin: 80px auto;
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-family: 'Segoe UI', sans-serif;
}

.login_wrapper h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
}

.login_wrapper label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #555;
}

.login_wrapper input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

.login_wrapper button {
  width: 100%;
  padding: 12px;
  margin-top: 25px;
  background-color: #0077cc;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login_wrapper button:hover {
  background-color: #005fa3;
}

.login_wrapper p {
  text-align: center;
  margin-top: 20px;
}

.login_wrapper a {
  color: #0077cc;
  text-decoration: none;
}

.login_wrapper a:hover {
  text-decoration: underline;
}

/* =========================
   Mobile Fullscreen
   ========================= */
@media (max-width: 768px) {
  .login_wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 40px 20px;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .login_wrapper input,
  .login_wrapper button {
    width: 100%;
    box-sizing: border-box;
  }

  .login_wrapper h2 {
    font-size: 1.6em;
    margin-bottom: 20px;
  }

}


/* Optionnel : réduire les animations si l’utilisateur préfère moins de mouvement */
@media (prefers-reduced-motion: reduce) {
  .login_wrapper button {
    transition: none;
  }
}
