body{
  overflow: hidden;
  padding : 0 !important
}

.connexion-page{
  display: flex;
  flex-direction: row;
  gap: 20px;
   justify-content: space-between;
  .login-left-side{
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    width: 60%;
    .form{
      position: absolute;
      left: 10%;
      top: 25%;
      width: 60%;
      display: flex;
      flex-direction: column;
      gap: 20px;
      .form-elements{
        display: flex;
        flex-direction: column;
        gap: 20px;
      }
    }


  }
.login-right-side{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 37vw;
  height: 95vh;
}


}