  .form-group {
    position: relative;
    margin: 20px;
  }

  input {
    padding-right: 30px; /* Platz für das Icon */
  }

  .info-icon {
    position: absolute;
    right: 5px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: #ffc107;
    color: black;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
  }

  .info-bubble {
    display: none;
    position: absolute;
    top: 30px;
    right: 0;
    background: #fff8dc;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 8px;
    width: 200px;
    box-shadow: 0px 2px 8px rgba(0,0,0,0.3);
    font-size: 14px;
    z-index: 10;
  }

  .info-bubble::after {
    content: "";
    position: absolute;
    top: -10px;
    right: 10px;
    border-width: 0 10px 10px 10px;
    border-style: solid;
    border-color: transparent transparent #fff8dc transparent;
  }