
body {
  background-image: url('../img/fond.jpg'); /* remplace par le chemin de ton image */
  background-size: cover;
  background-position: center;
  font-family: 'Segoe UI', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-form .form-control:focus {
   border-color: #198754;
}

.login-title {
  text-align: center;
  margin-bottom: 1.5rem;
  font-weight: 600;
  color: #198754;
}

.card-form {
  box-shadow: 0 0 0 0.2rem rgba(25, 135, 84, 0.25);
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%; /* ajuste selon ton besoin */
  z-index: 2; /* au-dessus de l'overlay */
  opacity: 0.8;
}

.tete-auth {
  height: 150px; /* ajuste selon ton besoin (ex: 100px, 150px...) */
  object-fit: cover; /* garde la bonne proportion sans déformation */
}