.secret-field {
  position: relative;
  width: 100%;
  flex: 1;
}

.secret-field input {
  padding-right: 46px;
}

.eye-button {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 36px;
  height: 36px;
  padding: 8px;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: #71858e;
}

.eye-button:hover {
  background: #edf3f4;
  color: #244b58;
}

.eye-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eye-button.revealed {
  color: var(--accent);
}
