.password-wrap {
  display: block;
  position: relative;
  margin-top: 8px;
}

.password-wrap input {
  margin-top: 0;
  padding-right: 50px;
}

.password-toggle {
  position: absolute;
  right: 4px;
  top: 50%;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  color: #bdb5ac;
  border-radius: 7px;
  cursor: pointer;
  transform: translateY(-50%);
}

.password-toggle:hover,
.password-toggle:focus-visible {
  color: #fff;
  background: #333431;
  outline: 0;
}

.password-toggle svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.field-message {
  display: block;
  margin-top: 7px;
  color: #938c84;
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
}

.field-message[data-state="invalid"] { color: #ff9a7d; }
.field-message[data-state="valid"] { color: #8fc69a; }
.field-message[data-state="valid"]::before { content: '✓  '; }
.field-invalid { border-color: #d7785e !important; }
.field-valid { border-color: #608d68 !important; }

.success {
  border: 1px solid #608d68;
  background: #243a29;
  color: #dcf2df;
  padding: 11px 13px;
  border-radius: 8px;
  font-size: 13px;
  margin: 16px 0;
}
