.two-column-container {
	display: flex;
	height: 100vh; /* Utilisez la hauteur totale de la fenêtre */
  gap: 41px;
  }
  
  .left-column {
    flex: 1;
   /* background-color: rgba(231, 154, 80, 1);*/
    ;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centre horizontalement */
    align-items: center;  /*Centre verticalement */
  }
  
  .logo {
    width: 100px; 
    height: auto; 
  }
  
  .right-column {
    flex: 1;
   
    padding: 20px;
    color:rgba(30, 30, 30, 1);
    ;
    
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centre horizontalement */
    align-items: center; /* Centre verticalement */
  }

  .button_login{
    width: 350px;
    height: 35px;
    /*background-color: #E79A50;*/
    font-size: 14px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  input{
    width: 350px;
    height: 35px;
    color: #439FE0;
    font-size: 14px;
  }

 /* .height_manual{
    height: 30px;
  }*/
  
  .bold-white {
    font-weight: bold;
    font-size:35px;
    
    top: 223px;
    left: 1030px;
    gap: 0px;
    opacity: 0px;
    color: rgba(30, 30, 30, 1);
  }
  
  .title_conn{
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    


  }

  .loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999; /* Assure que le loader est au-dessus de tous les autres éléments */
    display: none; /* Cache le loader initialement */
}

.loader {
    border: 16px solid #ece3e3; /* Couleur du loader */
    border-top: 16px solid #3498db; /* Couleur de la partie supérieure du loader */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite; /* Animation du spinner */
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -60px; /* Demi-largeur du loader */
    margin-left: -60px; /* Demi-hauteur du loader */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

.form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.form .form-control {
  
  margin-bottom: 10px; /* Adjust as needed */
}

.height_manual {
  height: 10px; /* Adjust as needed */
}

.row.align-items-center {
  display: flex;
  align-items: center;
}

.row input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px; /* Space between checkbox and label */
}

.row label {
  font-family: Roboto;
  font-size: 18px;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: -0.022em;
}

.forgetpassword {
  margin-top: 10px;
}

.button_login {
  margin-top: 10px;
}

.loader {
  margin-top: 10px;
}


