.password-wrapper {
  width: 100%;
  margin-bottom: 16px;
}

.password-flex {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.password-flex input {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.password-flex input:focus {
  outline: none;
}

.password-flex .toggle-eye {
  padding: 0 14px;
  cursor: pointer;
  color: var(--text-secondary);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: transparent;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.password-flex .toggle-eye:hover {
  color: var(--highlight);
}
