.input {
  width: 100%;
  border: 1px solid rgb(63 63 70);
  border-radius: 0.75rem;
  background: rgb(24 24 27);
  padding: 0.75rem 1rem;
  color: rgb(244 244 245);
  font-size: 0.875rem;
  line-height: 1.25rem;
  outline: none;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.input:focus {
  border-color: rgb(139 92 246 / 0.65);
  box-shadow: 0 0 0 2px rgb(139 92 246 / 0.1);
}

.input:disabled {
  opacity: 0.5;
}
