body, html {
    background-color: #1d1d1d;
    height: 100%;
    margin: 0;
  }
  

  .inputs_row {
    display: flex;
    justify-content: space-between; /* Ajuste l'espace entre les inputs */
    gap: 20px; /* Espacement entre les inputs */
    width: 100%; /* Assurez-vous que le conteneur prend toute la largeur disponible */
  }
  
  .input {
    flex: 1; /* Permet aux inputs de remplir l'espace disponible équitablement */
    /* La largeur est maintenant gérée par flex, vous pouvez retirer ou ajuster width: 245px; si nécessaire */
  }
  
  
  
.container {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .form {
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    transition: all 1s ease;
  }
  
  .form .form_front {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    backface-visibility: hidden;
    padding: 65px 45px;
    border-radius: 15px;
    box-shadow: inset 2px 2px 10px rgb(0 0 0), inset -1px -1px 5px rgb(161 155 155);
  }
  
  .form .form_back {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    position: absolute;
    backface-visibility: hidden;
    transform: rotateY(-180deg);
    padding: 65px 45px;
    border-radius: 15px;
    box-shadow: inset 2px 2px 10px rgb(0 0 0), inset -1px -1px 5px rgb(161 155 155);
  }
  
  .form_details {
    font-size: 25px;
    font-weight: 600;
    padding-bottom: 10px;
    color: rgb(0, 0, 0);
  }
  
  .input {
    width: 245px;
    min-height: 45px;
    color: #000000;
    outline: none;
    transition: 0.35s;
    padding: 0px 7px;
    background-color: #d9d9d9;
    border-radius: 6px;
    border: 2px solid #b5b5b5;
    box-shadow: 6px 6px 10px rgb(175 174 174), 1px 1px 10px rgb(255, 255, 255);
  }
  
  .input::placeholder {
    color: #999;
  }
  
  .input:focus.input::placeholder {
    transition: 0.3s;
    opacity: 0;
  }
  
  .input:focus {
    transform: scale(1.05);
    box-shadow: 6px 6px 10px rgb(255, 255, 255),
    1px 1px 10px rgb(255, 255, 255),
    inset 2px 2px 10px rgb(255, 255, 255),
    inset -1px -1px 5px rgb(255, 255, 255);
  }
  
  .btn {
    padding: 10px 35px;
    cursor: pointer;
    background-color: #000000;
    border-radius: 6px;
    border: 2px solid #ffffff;
    box-shadow: 6px 6px 10px rgb(255, 255, 255),
    1px 1px 10px rgb(255, 255, 255);
    color: #fff;
    font-size: 15px;
    font-weight: bold;
    transition: 0.35s;
  }
  
  .btn:hover {
    transform: scale(1.05);
    box-shadow: 6px 6px 10px rgb(255 254 254), 1px 1px 10px rgb(214, 214, 214), inset 2px 2px 10px rgb(57 57 57), inset -1px -1px 5px rgb(51 49 49);
  }
  
  .btn:focus {
    transform: scale(1.05);
    box-shadow: 6px 6px 10px rgb(255, 255, 255), 1px 1px 10px rgb(255, 255, 255), inset 2px 2px 10px rgb(91 91 91), inset -1px -1px 5px rgb(51 51 51);
  }
  
  .form .switch {
    font-size: 13px;
    color: rgb(0, 0, 0);
  }
  
  .form .switch .signup_tog {
    font-weight: 700;
    cursor: pointer;
    text-decoration: underline;
  }
  
  .container #signup_toggle {
    display: none;
  }
  
  .container #signup_toggle:checked + .form {
    transform: rotateY(-180deg);
  }


  
  /* From Uiverse.io by PriyanshuGupta28 */ 
.checkbox-wrapper-65 *,
.checkbox-wrapper-65 ::after,
.checkbox-wrapper-65 ::before {
box-sizing: border-box;
}

.checkbox-wrapper-65 .cbx {
position: relative;
display: block;
float: left;
width: 18px;
height: 18px;
border-radius: 4px;
background-color: #606062;
background-image: linear-gradient(#444444, #131313);
box-shadow: inset 0 1px 1px rgba(255,255,255,0.15), inset 0 -1px 1px rgba(0,0,0,0.15);
transition: all 0.15s ease;
}

.checkbox-wrapper-65 .cbx svg {
position: absolute;
top: 3px;
left: 3px;
fill: none;
stroke-linecap: round;
stroke-linejoin: round;
stroke: #fff;
stroke-width: 2;
stroke-dasharray: 17;
stroke-dashoffset: 17;
transform: translate3d(0, 0, 0);
}

.checkbox-wrapper-65 .cbx + span {
float: left;
margin-left: 6px;
}

.checkbox-wrapper-65 {
user-select: none;
}

.checkbox-wrapper-65 label {
display: inline-block;
cursor: pointer;
}

.checkbox-wrapper-65 input[type="checkbox"] {
display: none;
visibility: hidden;
}

.checkbox-wrapper-65 input[type="checkbox"]:checked + .cbx {
background-color: #606062;
background-image: linear-gradient(#444444, #131313);
}

.checkbox-wrapper-65 input[type="checkbox"]:checked + .cbx svg {
stroke-dashoffset: 0;
transition: all 0.15s ease;
}