.password-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.password-wrapper input {
  width: 100%;
  padding-right: 2.5rem !important;
  height: 46px; /* keeps stable height */
  line-height: 1.5;
  box-sizing: border-box;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: #6c757d;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 100%;
}

.toggle-password i {
  pointer-events: none;
}

input:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important; /* remove yellow autofill */
}

input.form-control {
  border: 1.5px solid #ced4da;
  transition: border-color 0.25s ease;
}

input.form-control:focus {
  box-shadow: none !important;
  border-color: #86b7fe;
}
