verdocs-text-input {
  font-family: "Inter", "Barlow", sans-serif;
  box-sizing: border-box;
  margin: 0 0 10px 0;
  display: block;
}
verdocs-text-input .input-element {
  box-sizing: border-box;
  border: 1px solid rgba(112, 122, 229, 0.3725490196);
  border-radius: 4px;
  background: #ffffff;
  color: #000;
  width: 100%;
  font-size: 16px;
  height: 34px;
  padding: 0 9px;
  outline: none;
}
verdocs-text-input .input-element:disabled {
  cursor: not-allowed;
  background: #aeb4bf;
  border: 1px solid #33364b;
}
verdocs-text-input .input-element::placeholder {
  color: #aaaaaa;
  opacity: 1;
}
verdocs-text-input .input-element:focus {
  outline: 1px solid #7d88ff;
}
verdocs-text-input .input-label {
  display: block;
  color: #555570;
  font-weight: 600;
  font-size: 13px;
  margin: 0 0 2px 0;
}
verdocs-text-input .required {
  color: red;
  margin-left: 2px;
  display: inline-block;
}
verdocs-text-input .description {
  font-size: 11px;
  margin: 0 0 0 4px;
  color: rgba(0, 0, 0, 0.54);
}
verdocs-text-input [data-lastpass-icon-root] {
  display: none !important;
}
verdocs-text-input .input-container {
  position: relative;
}
verdocs-text-input .clear {
  top: 7px;
  right: 5px;
  width: 18px;
  height: 18px;
  fill: #cccccc;
  position: absolute;
}
verdocs-text-input .clear:hover {
  fill: #720101;
  cursor: pointer;
}
verdocs-text-input .copy {
  top: 7px;
  right: 5px;
  width: 18px;
  height: 18px;
  fill: #cccccc;
  position: absolute;
}
verdocs-text-input .copy:hover {
  fill: #654dcb;
  cursor: pointer;
}
verdocs-text-input .toggle-pw {
  top: 5px;
  right: 7px;
  width: 18px;
  height: 18px;
  stroke: #cccccc;
  position: absolute;
}
verdocs-text-input .toggle-pw:hover {
  fill: #654dcb;
  cursor: pointer;
}
verdocs-text-input.clearable .input-element, verdocs-text-input.copyable .input-element {
  padding-right: 32px;
}