
    * {
        font-family: 'Inria Sans' !important;
    }

 /* Custom styles for full-page background */
 body, html {
    height: 100%;
    margin: 0;
    overflow: hidden;
    user-select: none;
  }

  .login-page {
    background-image: url('../../assets/img/truck6.jpg'); /* Replace with your image URL */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .login-box {
    background: rgba(255, 255, 255, 0.0); /* White background with slight transparency */
    padding: 0rem;
    width: 100%;
    max-width: 300px;
  }
  .input, .input:-webkit-autofill {
      background-color: rgba(255, 255, 255, .15);
      border: 0;
      color: #fff;
      border-radius: 1.15rem;
      padding: .5rem 1.5rem;
  }
  .button {
      border: 0;
      color: #f2f2f2;
      border-radius: 1.15rem;
      padding: .5rem 1.5rem;
      background-color: rgba(0,103,166, .75);
      transition: all .25s ease;
  }

  .button:hover {
      background-color: rgba(0,103,166,.9);
      transition: all .25s ease;
      color: #fff;
  }

  input::placeholder {
    color: #c7c7c7 !important; /* Set your desired color */
    opacity: 1; /* Ensure full opacity for the color */
    font-weight: 400;
  }

  a {
      transition: all .25s ease;
  }

  a:hover {
      transition: all .25s ease;
  }

  .has-floating-label label {
      position: absolute;
      top: 50%;
      left: 15px;
      transform: translateY(-50%);
      font-size: .75rem;
      color: grey;
      opacity: 0;
      transition: all 0.3s ease;
      padding-top: 5px;
  }

  .has-floating-label > input:focus + label,
  .control .input:not(:placeholder-shown) + label {
      top: 11px;
      left: 23px;
      font-size: 0.75rem;
      opacity: 1;
      color: #ccc; /* Bulma primary color */
  }

  .has-floating-label .input:not(:placeholder-shown) {
      padding-top: 15px;
      padding-bottom: 3px;
  }

  .has-floating-label > input:focus::placeholder,
  input:-webkit-autofill:focus {
      color: transparent !important;
  }

  #passwordTogglerIcon {
      transition: all 0.3s ease;
  }

  #passwordTogglerIcon:hover {
      color: #fff;
      transition: all 0.3s ease;
  }