.container {
	display: flex;
	width: 100vw; /* Utilise la largeur complète de la fenêtre de visualisation */
	height: 100vh; /* Utilise la hauteur complète de la fenêtre de visualisation */
	padding: 0;
  }
  
  .left-side, .right-side {
	display: flex;
	justify-content: center; /* Centre horizontalement le contenu */
	align-items: center; /* Centre verticalement le contenu */
  }
  
  .right-side {
	padding: 0 60px;
	flex: 1 1 50%;
	max-width: 600px;
	width: 100%;
  }

  .login-form{
	overflow: visible;
  }
  
  .left-side {
	flex: 1 1 50%;
	padding: 0 100px;
	width: 100%; /* Ajuste la largeur de la div à 100% de son conteneur */
    height: 100vh;
	background-image: url("../images/fondContact.png");
	background-size: cover; /* Fait en sorte que l'image remplisse l'espace en conservant son ratio */
    background-position: center; /* Centre l'image dans la div */
    background-repeat: no-repeat;
	flex-direction: column;
	align-self: center;
  }
  
  .left-side > svg {
	padding: 30px;
  }
  
  .login-form {
	width: 100%;
	/* position: relative; */
	border-radius: 10px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	color: #ffffff;
	text-align: center;
	background-color: #FFFF;
  }
  
  #bouton-retour {
	position: absolute;
	top: -55px;
	left: 0;
  }
  
  .input-group {
	display: block;
	margin-bottom: 20px;
  }
  
  .input-group label {
	display: block;
	text-align: left;
	margin-bottom: 15px;
  }
  textarea{
	resize: none;
  }
  
  .input-group input, .input-group textarea {
	width: 100%;
	padding: 15px;
	border-radius: 12px;
	margin-bottom: 10px;
	border: none;
	background-color: rgb(217, 217, 217, 0.4);
	outline: transparent;
	transition: outline-color 0.2s;
  }
  
  .input-group input:hover, .input-group input:focus, .input-group textarea:hover, .input-group textarea:focus {
	outline: 2px solid rgba(207, 11, 93, 0.5);
	outline-offset: 2px;
  }
  
  button {
	background-color: rgb(207, 11, 93);
	color: #fff;
	border: none;
	padding: 10px 20px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
	display: block;
	width: 100%;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 18px;
  }
  
  .signup-link {
	margin: 40px 20px 20px 20px;
	padding: 20px 18px;
	color: rgb(207, 11, 93);
	background-color: rgba(207, 11, 93, 0.1);
	text-decoration: none;
	font-weight: bold;
	border-radius: 12px;
  }
  
  .signup-link a {
	color: rgb(207, 11, 93);
	text-decoration: none;
	font-weight: bold;
  }
  
  input {
	font-family: inherit;
	font-size: 1rem;
  }
  
  input[type="text"], input[type="password"] {
	padding: 10px;
	margin-bottom: 10px; /* Espacement entre les champs de saisie */
	height: 45px;
  }
  
  button[type="submit"],button[type="button"] {
	padding: 20px;
	cursor: pointer;
  }
  
  .login-header {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
	align-items: center;
	color: rgb(207, 11, 93);
	background-color: rgba(214, 214, 214, 0.4);
	border-radius: 15px 15px 0 0 ;
	padding: 20px 20px 5px 20px;
  }
  
  .login-header::after {
	position: absolute;
	  bottom: -180px;
	  content: "";
	  width: calc(100% + 15px);
	  height: 180px;
	  background-color: rgba(214, 214, 214, 0.4);
	  clip-path: polygon(50% 20%, 0 0, 100% 0);
  }
  
  .login-body {
	padding: 50px 20px 0 20px;
  }
  
  h2 {
	margin: 0;
	font-size: 18px;
  }
  
  label {
	color: rgb(207, 11, 93);
  }
  
  form {
	margin: 0;
  }
  
  .login-footer button {
	border-radius: 0 0 10px 10px;
	margin-top: 20px;
  }
  
  .bordure-erreur{
	  border: 2px solid red!important;
  }
  
  .checkbox-wrapper {
	display: flex;
	align-items: center;
	gap: 15px;
  }
  
  .checkbox-wrapper input[type="checkbox"] {
	appearance: none;
	background-color: #dfe1e4;
	border-radius: 72px;
	border-style: none;
	flex-shrink: 0;
	height: 20px;
	margin: 0;
	position: relative;
	width: 30px;
  }
  
  .checkbox-wrapper input[type="checkbox"]::before {
	bottom: -6px;
	content: "";
	left: -6px;
	position: absolute;
	right: -6px;
	top: -6px;
  }
  
  .checkbox-wrapper input[type="checkbox"],
  .checkbox-wrapper input[type="checkbox"]::after {
	transition: all 100ms ease-out;
  }
  
  .checkbox-wrapper input[type="checkbox"]::after {
	background-color: #fff;
	border-radius: 50%;
	content: "";
	height: 14px;
	left: 3px;
	position: absolute;
	top: 3px;
	width: 14px;
  }
  
  .checkbox-wrapper input[type=checkbox] {
	cursor: default;
  }
  
  .checkbox-wrapper input[type="checkbox"]:hover {
	background-color: #c9cbcd;
	transition-duration: 0s;
  }
  
  .checkbox-wrapper input[type="checkbox"]:checked {
	background-color: rgb(207, 11, 93);
  }
  
  .checkbox-wrapper input[type="checkbox"]:checked::after {
	background-color: #fff;
	left: 13px;
  }
  
  .checkbox-wrapper :focus:not(.focus-visible) {
	outline: 0;
  }
  
  .checkbox-wrapper input[type="checkbox"]:checked:hover {
	background-color: rgb(207, 11, 93);
  }

  .chiffres-container {
	box-sizing: border-box;
	display: flex;
	justify-content: left;
	align-items: left;
	gap: 20px;
	padding: 15px 20px;
	background-color: rgba(255, 255, 255, 1);
	backdrop-filter: blur(4px);
	border: 1px solid #dadada;
	box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
	border-radius: 12px;
  }
  .chiffres-container #fusee {
	position: absolute;
	top: -10px;
	right: -10px;
  }
  .chiffres-container > svg {
	flex-shrink: 0;
	width: 40px;
	height: 40px;
	fill: #2F2E41;
  }
  .chiffres-container .chiffres-content {
	display: flex;
	flex-direction: column;
	gap: 5px;
  }
  .chiffres-container .chiffres-content > div {
	display: flex;
	gap: 10px;
	align-items: center;
  }
  .chiffres-container .chiffres-content h3 {
	color: #2F2E41;
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
	white-space: nowrap;
  }
  .chiffres-container .chiffres-content p {
	color: #2F2E41;
	font-size: 1.2rem;
	margin: 0;
	white-space: nowrap;
  }
  
  @media (max-width: 1030px) {
	
  
	.container {
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  max-width: 600px;
	  margin: auto;
	}
  
	.left-side {
	  display: none;
	}
  
	.left-side > svg {
	  width: 80%;
	  height: auto;
	}
  
	.right-side {
	  max-width: unset;
	  padding: 0;
	}
  }
  
  @media (max-width: 550px) {
	.login-form {
	  width: 100vh;
	  border-radius: 0;
	}
  
	.login-footer button {
	  border-radius: 0;
	}
  }