
.phone-passphrase-form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  transition: all ease 300ms
}

.phone-passphrase-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.phone-passphrase-input-wrapper {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-passphrase-input {
  outline: 0;
  width: 100%;
  padding-right: 40px;
}

.phone-passphrase-input-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: none;
  color: #444444;
  padding: 2px;
  height: 32px;
  width: 32px;
  position: absolute;
  right: 0;
}

.phone-passphrase-input-toggle svg {
  height: 12px;
}

.phone-passphrase-text,
.phone-passphrase-issue {
  display: block;
  margin-top: 2px;
  margin-left: 2px;
  font-size: 12px;
  height: 16px;
  transition: all ease 600ms;
}

.phone-passphrase-text {
  font-size: 12px;
}

.phone-passphrase-issue {
  color: crimson;
}

.phone-passphrase-issue:empty {
  opacity: 0;
  height: 0;
  filter: blur(4px);
}