.forgot-password-confirmation {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 18px;
  padding: 16px;
  border: 1px solid #9ed7ad;
  border-radius: 14px;
  background: #edf9f0;
  color: #176b45;
  box-shadow: 0 8px 22px rgba(23, 107, 69, 0.10);
  text-align: left;
}
.forgot-password-confirmation.hidden { display: none; }
.forgot-password-confirmation-icon {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #176b45;
  color: white;
  font-size: 20px;
  font-weight: 900;
}
.forgot-password-confirmation strong { display: block; font-size: 1rem; }
.forgot-password-confirmation p { margin: 4px 0 0; line-height: 1.35; }

.password-input-wrap {
  position: relative;
  display: block;
  width: 100%;
}
.password-input-wrap > input { width: 100%; padding-right: 48px !important; }
.password-visibility-button {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: #607086;
  cursor: pointer;
  padding: 7px;
}
.password-visibility-button:hover,
.password-visibility-button:focus-visible {
  background: #eef2f7;
  color: #172033;
  outline: none;
}
.password-visibility-button svg { width: 21px; height: 21px; }

.password-preset-row {
  display: flex;
  justify-content: flex-start;
  margin: -2px 0 4px;
}
.password-preset-button {
  min-height: 38px;
  border: 1px solid #c8d2df;
  border-radius: 10px;
  background: #f7f9fc;
  color: #203047;
  padding: 0 12px;
  font-weight: 800;
  cursor: pointer;
}
.password-preset-button:hover { background: #eef3f8; }
.password-preset-button.hidden { display: none; }


/* Stage 28C1 - Needs Action navigation target */
.stage28c1-action-highlight {
  outline: 3px solid rgba(59, 91, 219, 0.32);
  outline-offset: 4px;
  box-shadow: 0 0 0 8px rgba(59, 91, 219, 0.08);
  transition: outline-color 180ms ease, box-shadow 180ms ease;
}


/* Stage 28C2 - manager action deep-link focus */
.profile-section-card.stage28c2-action-target {
  scroll-margin-top: 142px;
  outline: 4px solid #3659e3;
  outline-offset: 5px;
  box-shadow: 0 0 0 10px rgba(54, 89, 227, 0.12), 0 16px 34px rgba(31, 48, 92, 0.14);
  border-radius: 18px;
  animation: stage28c2-action-pulse 900ms ease-out 1;
}

@keyframes stage28c2-action-pulse {
  0% { box-shadow: 0 0 0 2px rgba(54, 89, 227, 0.32), 0 12px 28px rgba(31, 48, 92, 0.10); }
  55% { box-shadow: 0 0 0 14px rgba(54, 89, 227, 0.13), 0 16px 34px rgba(31, 48, 92, 0.14); }
  100% { box-shadow: 0 0 0 10px rgba(54, 89, 227, 0.12), 0 16px 34px rgba(31, 48, 92, 0.14); }
}

@media (max-width: 760px) {
  .profile-section-card.stage28c2-action-target {
    scroll-margin-top: 112px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-section-card.stage28c2-action-target {
    animation: none;
    scroll-behavior: auto;
  }
}
