/**
 * D7020 CONFERENCE — AUTH EXTRAS
 * ------------------------------------------------------------------
 * Small, additive stylesheet for the password show/hide toggle and the
 * email-verification banner on the dashboard. Kept separate from the
 * main style.css so nothing here can collide with or accidentally
 * override existing site styles — just append a <link> tag on the pages
 * that need it.
 */

.password-field {
  position: relative;
}

.password-field input[type="password"],
.password-field input[type="text"] {
  padding-right: 46px;
}

.password-toggle {
  position: absolute;
  top: 50%;
  right: 4px;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #8a8a8a;
  padding: 0;
}

.password-field label + .password-toggle,
.password-field .password-toggle {
  top: calc(50% + 12px);
}

.password-toggle:hover {
  color: #444;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
}

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

.password-field.is-visible .icon-eye {
  display: none;
}

.password-field.is-visible .icon-eye-off {
  display: block;
}

.verify-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-radius: 10px;
  background: #fff8e1;
  border: 1px solid #f0d98c;
  color: #6b5900;
  font-size: 0.92rem;
  margin-bottom: 24px;
}

.verify-banner button {
  border: none;
  background: transparent;
  color: var(--teal, #0e7c86);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-size: 0.92rem;
}

.verify-banner button:disabled {
  opacity: 0.6;
  cursor: default;
}
