.InputBox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  box-shadow: 0px 6px 20px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid #f9f8f6;

  border-radius: 10px;
  background: rgba(56, 124, 68, 0.1);
  padding-right: 10px;

  padding-left: 10px;

  input {
    outline: none;
    box-shadow: none;
    border: none;

    background: transparent;
    width: 100%;
    height: 50px;

    &::placeholder {
      padding-left: 10px;
      color: #808080;
    }

    &:focus,
    &:active {
      box-shadow: none;
      border: none;
    }
  }
}
