.password-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  
  .tool-input {
    flex: 1;
    padding: 10px;
    font-size: 16px;
  }
  
  .toggle-button {
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
  }
  
  .strength-meter {
    margin-top: 10px;
    height: 12px;
    background-color: #e0e0e0;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .bar {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease;
  }
  
  .strength-text {
    margin-top: 10px;
    font-weight: bold;
    font-size: 14px;
  }
  
  .requirements {
    margin-top: 15px;
    padding-left: 20px;
    list-style: disc;
  }
  
  .requirements li {
    font-size: 14px;
    margin-bottom: 5px;
  }
  
  .valid {
    color: #28a745;
  }
  
  .invalid {
    color: #dc3545;
  }
  