.password-field {
  position: relative;
}

.login-card .password-field input {
  width: 100%;
  padding-right: 46px;
}

.password-field > button {
  position: absolute;
  top: 50%;
  right: 7px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #6f82ba;
  cursor: pointer;
  transform: translateY(-50%);
}

.password-field > button:hover {
  background: #eef4fb;
  color: #0a63b7;
}

.password-field > button:focus-visible {
  outline: 2px solid #327ece;
  outline-offset: 1px;
}

.password-field svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
