/* Style pour la page de connexion */
body {
    background: repeating-linear-gradient(
      45deg,
      #1a1a1a,
      #1a1a1a 10px,
      #222222 10px,
      #222222 20px
    );
    font-family: 'Courier New', monospace;
    color: white;
    margin: 0;
    padding: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
  
  .login-box, .card, .login-logo, .login-card-body {
    background-color: transparent !important;
    box-shadow: none !important;
    border: none !important;
  }
  
  .login-logo {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  
  .login-logo b {
    color: white;
    font-size: 30px;
    font-weight: bold;
  }
  
  .login-card-body {
    background-color: rgba(28, 32, 46, 0.8) !important;
    padding: 30px !important;
    border-radius: 10px;
    min-width: 300px;
  }
  
  .login-box-msg {
    color: #8b8ba7;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: center;
  }
  
  .input-group {
    margin-bottom: 15px;
    position: relative;
  }
  
  .input-group-text {
    display: none;
  }
  
  .form-control {
    width: 100%;
    padding: 10px;
    background-color: transparent !important;
    border: 1px solid #444 !important;
    border-radius: 5px !important;
    color: white !important;
    font-family: 'Courier New', monospace;
  }
  
  .bi {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #8b8ba7;
  }
  
  .btn-primary {
    width: 100%;
    padding: 10px;
    background-color: #4a6cd4 !important;
    border: none !important;
    border-radius: 5px !important;
    color: white;
    font-weight: normal;
    text-transform: none;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 15px;
  }
  
  .btn-primary:hover {
    background-color: #3a5cc4 !important;
  }
  
  /* Corrections pour la structure Bootstrap */
  .card {
    width: 100%;
  }
  
  .col-4, .d-grid {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
  }