html,
body {
  width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-image: url("/images/pieds.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.container-limited,
.container-limited-login,
.container-limited-order {
  margin: 0 auto;
  padding: 0 1rem;
}

.container-limited {
  max-width: 1200px;
}

.container-limited-login {
  max-width: 500px;
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container-limited-order {
  max-width: 1700px;
}

.zoomable-photo {
  transition: transform 0.2s ease;
}

.modal-backdrop-custom {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.85);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal-image {
  width: auto;
  height: auto;
  max-width: 95vw;
  max-height: 95vh;
  cursor: zoom-out;
  box-shadow: 0 0 10px #fff;
  border: 4px solid white;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.btn-connexion {
  background-color: #0b484b;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  padding: 1rem 0rem;
}

.btn-connexion:hover {
  background-color: #0e6669;
  color: white;
}
