/* Partie Authentification */
.login-bg {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 400px;
    background-color: #242423;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    padding-top: 50px;
    padding-bottom: 50px;
    justify-content: center;
    align-items: center;
}
.login-form {
    width: 350px;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
  .nav-tabs {
    display: flex;
    justify-content: space-between;
  }

  .nav-tabs .nav-item {
    flex: 1; /* Make each tab take up equal space */
    text-align: center; /* Center the text inside the buttons */
  }

  .nav-tabs .nav-item .nav-link {
    width: 100%;
    padding: 10px;
  }

  .tab-content {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-top: none;
  }

  form {
    display: flex;
    flex-direction: column;
  }

  form label, form input, form button {
    margin-bottom: 15px;
  }

  form input {
    padding: 8px;
    font-size: 1em;
    width: 100%;
  }

  form button {
    padding: 10px;
    background-color: #0262bb;
    color: white;
    border: none;
    cursor: pointer;
  }

  form button:hover {
    background-color: #0575dd;
  }

.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {
  .section {
    scroll-margin-top: 67px;
  }
}

  /*--------------------------------------------------------------
  # Clients Section
  --------------------------------------------------------------*/
  .techlogo {
    padding: 10px 0;
  }

  .techlogo .swiper {
    padding: 10px 0;
  }

  .techlogo .swiper-wrapper {
    height: auto;
  }

  .techlogo .swiper-slide img {
    transition: 0.3s;
  }

  .techlogo .swiper-slide img:hover {
    transform: scale(1.1);
  }

  .light-background {
    --background-color: #f5f9fc;
    --surface-color: #ffffff;
  }
