/* Password field with show/hide button */
.password-wrap {
  position: relative;
  width: 100%;
}

.password-wrap input {
  width: 100%;
  padding-right: 48px;
  box-sizing: border-box;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);

  border: none;
  background: transparent;
  padding: 6px;

  color: #6b7280;
  cursor: pointer;

  font-size: 18px;
}

.toggle-password:hover {
  color: #16a34a;
}


.forgot-password-link {
  display: block;
  margin-top: 14px;
  text-align: center;
  color: #16a34a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.forgot-password-link:hover {
  text-decoration: underline;
}