.password-input-wrapper {
  position: relative;
}

.password-input-wrapper input {
  width: 100%;
}

.toggle-password-visibility {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  background: none;
}

.toggle-password-visibility img {
  width: 20px;
  height: 20px;
}

.password-strength {
  margin-top: 12px;
}

.password-bars {
  display: flex;
  gap: 21px;
  margin-bottom: 8px;
}

.password-bars .bar {
  flex: 1;
  height: 4px;
  background-color: #e0e0e0;
  border-radius: 2px;
  transition: background-color 0.3s ease;
}

.password-strength-label {
  font-size: 12px;
  color: var(--text-secondary);
  margin-left: auto;
  justify-self: flex-end;
}

.password-eye-position-container {
  position: relative;
}
