/*Pass*/
label {
  position: relative;
}

label input {
  transition: all 0.2s;
}

label .password-icon {
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 15px;
  color: #977859;
  transition: all 0.2s;
}

label .password-icon:hover {
  cursor: pointer;
  color: #1D1308;
}

label .password-icon .feather-eye-off {
  display: none;
}