.input-group {
  position: relative;
  display: flex;
}

.input-group input {
  flex: 1;
  padding-right: 40px;
}

.input-group .toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.char-count {
  font-size: 12px;
  color: #666;
  margin-top: 5px;
}

.strength-meter {
  height: 6px;
  background-color: #eee;
  margin-top: 8px;
  border-radius: 4px;
  overflow: hidden;
}

.strength-bar {
  height: 100%;
  transition: width 0.3s ease;
}

.strength-bar.weak {
  background-color: red;
}

.strength-bar.medium {
  background-color: orange;
}

.strength-bar.strong {
  background-color: green;
}

.strength-label {
  font-size: 12px;
  margin-top: 4px;
}
